diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-04-11 08:45:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 08:45:40 +0200 |
commit | 35665897574a3bc94ae304dcf4ea6ef1fc45789c (patch) | |
tree | 413b1dab23c48e8a80ac70256d157a093b63a95d /apps/files_external | |
parent | 036ef0da91e389136db3eea4d2935ee85b101ea1 (diff) | |
parent | b9949126ed883360a40be6c0eecc1127aa34bafa (diff) | |
download | nextcloud-server-35665897574a3bc94ae304dcf4ea6ef1fc45789c.tar.gz nextcloud-server-35665897574a3bc94ae304dcf4ea6ef1fc45789c.zip |
Merge pull request #31903 from nextcloud/bugfix/noid/fix-missing-else
Fix case also when the table existed already
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Migration/Version1011Date20200630192246.php | 2 |
1 files changed, 1 insertions, 1 deletions
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, ]); } |