diff --git a/src/Platforms/AbstractPlatform.php b/src/Platforms/AbstractPlatform.php index bce1ff01ef9..81c1a0f664b 100644 --- a/src/Platforms/AbstractPlatform.php +++ b/src/Platforms/AbstractPlatform.php @@ -4014,10 +4014,6 @@ public function columnsEqual(Column $column1, Column $column2): bool return true; } - if ($column1->getComment() !== $column2->getComment()) { - return false; - } - - return $column1->getType() === $column2->getType(); + return $column1->getComment() === $column2->getComment(); } }