Skip to content

Commit

Permalink
revert column nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
zajca committed Dec 14, 2021
1 parent 56417cf commit a90ef4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/SynapseNext/SqlBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2100,7 +2100,7 @@ protected function getTestTableWithColumnsDefinition(
} else {
$columns[] = $this->createGenericColumn('id');
}
$columns[] = $this->createGenericColumn('col1', false);
$columns[] = $this->createGenericColumn('col1');
if ($overwriteColumn2 === null) {
$columns[] = $this->createGenericColumn('col2');
} else {
Expand Down

0 comments on commit a90ef4e

Please sign in to comment.