Skip to content

Commit 3d14e8c

Browse files
committed
Fixed assertDefinitionEqual column type test
1 parent a369628 commit 3d14e8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Setup/Declaration/Schema/Declaration/ValidationRules/IncosistentReferenceDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private function assertDefinitionEqual(Column $column, Column $referenceColumn)
4040
* Columns should have the same types
4141
*/
4242
if ($column->getType() !== $referenceColumn->getType()) {
43-
return true;
43+
return false;
4444
}
4545

4646
return $this->assertUnsigned($column, $referenceColumn) &&

0 commit comments

Comments
 (0)