Skip to content

Commit

Permalink
Merge pull request #31903 from nextcloud/bugfix/noid/fix-missing-else
Browse files Browse the repository at this point in the history
Fix case also when the table existed already
  • Loading branch information
nickvergessen authored Apr 11, 2022
2 parents 036ef0d + b994912 commit 3566589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
$table = $schema->getTable('external_config');
$table->changeColumn('value', [
'notnull' => false,
'length' => 4096,
'length' => 4000,
]);
}

Expand Down

0 comments on commit 3566589

Please sign in to comment.