diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-11-25 09:46:39 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-11-25 09:46:39 +0100 |
commit | f79d98e0892717f5994293ca6a8ae161dfe47c01 (patch) | |
tree | 7c9df201754fde4e9e64fc7dc534b74dd11b54d8 /core | |
parent | 3c17d1b5e2ebb737f7d6d05a73cef37efffcdd3d (diff) | |
download | nextcloud-server-f79d98e0892717f5994293ca6a8ae161dfe47c01.tar.gz nextcloud-server-f79d98e0892717f5994293ca6a8ae161dfe47c01.zip |
Fix the import order of new migrations
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Db/Migrations/GenerateCommand.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 69bf4a84a8f..c140d6ec176 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -47,8 +47,8 @@ namespace {{namespace}}; use Closure; use OCP\DB\ISchemaWrapper; -use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; /** * Auto-generated migration step: Please modify to your needs! |