fix(Text2Image): Add number_of_images to migration

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2023-10-20 13:53:06 +02:00
parent bc85acf7d0
commit 73da7f20d3

View file

@ -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,