Skip to content

Commit

Permalink
Update lib/Migration/Version010010Date20240430083738.php
Browse files Browse the repository at this point in the history
Co-authored-by: julien-nc <[email protected]>
Signed-off-by: Anupam Kumar <[email protected]>
  • Loading branch information
kyteinsky and julien-nc committed May 10, 2024
1 parent 5ec221f commit 4a958e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Migration/Version010010Date20240430083738.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
$table->addColumn('id', Types::INTEGER, [
'autoincrement' => true,
]);
$table->addColumn('user_id', 'string', [
$table->addColumn('user_id', 'Types::STRING', [
'notnull' => true,
'length' => 256,
]);
$table->addColumn('title', 'string', [
$table->addColumn('title', 'Types::STRING', [
'notnull' => false,
'length' => 256,
]);
Expand Down

0 comments on commit 4a958e2

Please sign in to comment.