Browse Source

fix(TextToImage): Fix notnull column to allow for empty strings on orcale

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
pull/40326/head
Marcel Klehr 2 years ago
parent
commit
ca9a28ab51
  1. 2
      core/Migrations/Version28000Date20230906104802.php

2
core/Migrations/Version28000Date20230906104802.php

@ -71,7 +71,7 @@ class Version28000Date20230906104802 extends SimpleMigrationStep {
'default' => '',
]);
$table->addColumn('identifier', Types::STRING, [
'notnull' => true,
'notnull' => false,
'length' => 255,
'default' => '',
]);

Loading…
Cancel
Save