mirror of
https://github.com/nextcloud/server.git
synced 2026-07-15 21:03:00 -04:00
fix(Text2Image): Add number_of_images to migration
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
bc85acf7d0
commit
73da7f20d3
1 changed files with 4 additions and 0 deletions
|
|
@ -61,6 +61,10 @@ class Version28000Date20230906104802 extends SimpleMigrationStep {
|
|||
'length' => 6,
|
||||
'default' => 0,
|
||||
]);
|
||||
$table->addColumn('number_of_images', Types::INTEGER, [
|
||||
'notnull' => true,
|
||||
'default' => 1,
|
||||
]);
|
||||
$table->addColumn('user_id', Types::STRING, [
|
||||
'notnull' => false,
|
||||
'length' => 64,
|
||||
|
|
|
|||
Loading…
Reference in a new issue