diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-10-29 18:14:38 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-10-29 19:25:34 +0100 |
commit | fd836616a2cd43c88e2e44cf7f2d073bfdcc53b3 (patch) | |
tree | 039f92eb64779b3f97fadf1ae688b7be0b59bd88 /apps/dav | |
parent | f420ac94b02ad86e004b5490b8af3ca68a7495f8 (diff) | |
download | nextcloud-server-fd836616a2cd43c88e2e44cf7f2d073bfdcc53b3.tar.gz nextcloud-server-fd836616a2cd43c88e2e44cf7f2d073bfdcc53b3.zip |
Return $schema on change and null otherwise
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Migration/Version1012Date20190808122342.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/dav/lib/Migration/Version1012Date20190808122342.php b/apps/dav/lib/Migration/Version1012Date20190808122342.php index 4aa768e705d..376d8472968 100644 --- a/apps/dav/lib/Migration/Version1012Date20190808122342.php +++ b/apps/dav/lib/Migration/Version1012Date20190808122342.php @@ -38,7 +38,7 @@ class Version1012Date20190808122342 extends SimpleMigrationStep { * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper - * @since 13.0.0 + * @since 17.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, @@ -112,5 +112,7 @@ class Version1012Date20190808122342 extends SimpleMigrationStep { return $schema; } + + return null; } } |