Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-08 16:52:54 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-08 16:52:54 +0300
commitb9949126ed883360a40be6c0eecc1127aa34bafa (patch)
tree27f8aecd7e5a1d74525a3af74ca1e3d543ffd4a0 /apps/files_external
parent1e02304b37a9b0f278e5eccae6e39720947119c6 (diff)
Fix case also when the table existed already
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/Migration/Version1011Date20200630192246.php2
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,
]);
}