diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-08-21 08:31:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-21 08:31:37 +0200 |
commit | bac545e7540295c39f94490536d0986a0693c533 (patch) | |
tree | e1aaf563a65c23110ee859064645f65a245b5d1e | |
parent | 6ad0ba04482d98a2f19a00795f2f003b7ecad58f (diff) | |
parent | eada4cccfc38d6205821b750ba355d1ea4bd58b4 (diff) | |
download | nextcloud-server-bac545e7540295c39f94490536d0986a0693c533.tar.gz nextcloud-server-bac545e7540295c39f94490536d0986a0693c533.zip |
Merge pull request #10772 from nextcloud/fix/generated-migration-code-since
Fix generated migration class code
-rw-r--r-- | core/Command/Db/Migrations/GenerateCommand.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 50d58a9ea16..f3af3e0e6d2 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -55,7 +55,6 @@ class {{classname}} extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @since 13.0.0 */ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { } @@ -65,7 +64,6 @@ class {{classname}} extends SimpleMigrationStep { * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper - * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { {{schemabody}} @@ -75,7 +73,6 @@ class {{classname}} extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @since 13.0.0 */ public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { } |