Skip to content

Commit

Permalink
fix: change notnull => true
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
  • Loading branch information
andrey18106 committed Apr 17, 2024
1 parent 0bfa163 commit 657add2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Migration/Version2205Date20240411124836.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
]);
// Symfony\Component\Console\Command\Command->addArgument()
$table->addColumn('arguments', Types::JSON, [
'notnull' => false,
'notnull' => true,
'default' => '[]',
]);
// Symfony\Component\Console\Command\Command->addOption()
$table->addColumn('options', Types::JSON, [
'notnull' => false,
'notnull' => true,
'default' => '[]',
]);
// Symfony\Component\Console\Command\Command->addUsage()
$table->addColumn('usages', Types::JSON, [
'notnull' => false,
'notnull' => true,
'default' => '[]',
]);
$table->addColumn('execute_handler', Types::STRING, [
Expand Down

0 comments on commit 657add2

Please sign in to comment.