diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-10-18 10:55:30 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-10-18 13:31:01 +0200 |
commit | ca9a28ab51d9f64cd0802ecab5cbdcccfa8eacb9 (patch) | |
tree | 077ce81e269545e5df1d29967cefdf00f6b39dae /core/Migrations | |
parent | d3da49de4433f34c4cba23746a4f414309a40370 (diff) | |
download | nextcloud-server-ca9a28ab51d9f64cd0802ecab5cbdcccfa8eacb9.tar.gz nextcloud-server-ca9a28ab51d9f64cd0802ecab5cbdcccfa8eacb9.zip |
fix(TextToImage): Fix notnull column to allow for empty strings on orcale
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version28000Date20230906104802.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version28000Date20230906104802.php b/core/Migrations/Version28000Date20230906104802.php index 61f0d01dff0..7134899c82e 100644 --- a/core/Migrations/Version28000Date20230906104802.php +++ b/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' => '', ]); |