aboutsummaryrefslogtreecommitdiffstats
path: root/core/Migrations
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-10-18 10:55:30 +0200
committerMarcel Klehr <mklehr@gmx.net>2023-10-18 13:31:01 +0200
commitca9a28ab51d9f64cd0802ecab5cbdcccfa8eacb9 (patch)
tree077ce81e269545e5df1d29967cefdf00f6b39dae /core/Migrations
parentd3da49de4433f34c4cba23746a4f414309a40370 (diff)
downloadnextcloud-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.php2
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' => '',
]);