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 4a958e2 commit 1f88508
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Migration/Version010010Date20240430083738.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
if (!$schema->hasTable('assistant_chat_sns')) {
$schemaChanged = true;
$table = $schema->createTable('assistant_chat_sns');
$table->addColumn('id', Types::INTEGER, [
$table->addColumn('id', Types::BIGINT, [
'autoincrement' => true,
'notnull' => true,
]);
$table->addColumn('user_id', 'Types::STRING', [
'notnull' => true,
Expand Down

0 comments on commit 1f88508

Please sign in to comment.