Merge pull request #31903 from nextcloud/bugfix/noid/fix-missing-else

Fix case also when the table existed already
This commit is contained in:
Joas Schilling 2022-04-11 08:45:40 +02:00 committed by GitHub
commit 3566589757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,7 +124,7 @@ class Version1011Date20200630192246 extends SimpleMigrationStep {
$table = $schema->getTable('external_config');
$table->changeColumn('value', [
'notnull' => false,
'length' => 4096,
'length' => 4000,
]);
}