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:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-31 11:19:48 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-03-31 11:19:48 +0300
commitddfa2f221ec454447f607c5b0fd3034b5f5a2d85 (patch)
tree1b3d5820196d80ca5c75f5157c675f3aff136a9f /apps/files_external
parent9d2536e49eeaa2c71a10f5c0a2289a614da039b4 (diff)
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.php12
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;
}
}