From: Joas Schilling Date: Fri, 8 Apr 2022 13:52:54 +0000 (+0200) Subject: Fix case also when the table existed already X-Git-Tag: v24.0.0rc1~35^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b9949126ed883360a40be6c0eecc1127aa34bafa;p=nextcloud-server.git Fix case also when the table existed already Signed-off-by: Joas Schilling --- diff --git a/apps/files_external/lib/Migration/Version1011Date20200630192246.php b/apps/files_external/lib/Migration/Version1011Date20200630192246.php index c2a53e346f1..413c84b4bab 100644 --- a/apps/files_external/lib/Migration/Version1011Date20200630192246.php +++ b/apps/files_external/lib/Migration/Version1011Date20200630192246.php @@ -124,7 +124,7 @@ class Version1011Date20200630192246 extends SimpleMigrationStep { $table = $schema->getTable('external_config'); $table->changeColumn('value', [ 'notnull' => false, - 'length' => 4096, + 'length' => 4000, ]); }