fix(Text2Image): Add number_of_images to migration

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
pull/40326/head
Marcel Klehr 3 years ago
parent bc85acf7d0
commit 73da7f20d3
  1. 4
      core/Migrations/Version28000Date20230906104802.php

@ -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…
Cancel
Save