diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-31 10:19:48 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-31 10:19:48 +0200 |
commit | ddfa2f221ec454447f607c5b0fd3034b5f5a2d85 (patch) | |
tree | 1b3d5820196d80ca5c75f5157c675f3aff136a9f /apps/files_external | |
parent | 9d2536e49eeaa2c71a10f5c0a2289a614da039b4 (diff) | |
download | nextcloud-server-ddfa2f221ec454447f607c5b0fd3034b5f5a2d85.tar.gz nextcloud-server-ddfa2f221ec454447f607c5b0fd3034b5f5a2d85.zip |
Remove unneeded preSchemaChange and return null if no changes
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Migration/Version1016Date20220324154536.php | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/apps/files_external/lib/Migration/Version1016Date20220324154536.php b/apps/files_external/lib/Migration/Version1016Date20220324154536.php index 0f3b5522094..a2a7ecaff17 100644 --- a/apps/files_external/lib/Migration/Version1016Date20220324154536.php +++ b/apps/files_external/lib/Migration/Version1016Date20220324154536.php @@ -35,15 +35,6 @@ class Version1016Date20220324154536 extends SimpleMigrationStep { * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - */ - public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { - // FIXME do we need to check for 4000+ values? - } - - /** - * @param IOutput $output - * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` - * @param array $options * @return null|ISchemaWrapper */ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { @@ -55,8 +46,9 @@ class Version1016Date20220324154536 extends SimpleMigrationStep { if ($column->getLength() > 4000) { $column->setLength(4000); + return $schema; } - return $schema; + return null; } } |