diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-11-25 14:11:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 14:11:09 +0100 |
commit | 279c0cb2ed99c3914f19468c267344aa3a2f04e6 (patch) | |
tree | 48a69058db6edac5dc3aafc98df0a6834d31c323 /core/Command/Db | |
parent | c7d5b8fc493520ab40076ddade3632152dbfef00 (diff) | |
parent | f79d98e0892717f5994293ca6a8ae161dfe47c01 (diff) | |
download | nextcloud-server-279c0cb2ed99c3914f19468c267344aa3a2f04e6.tar.gz nextcloud-server-279c0cb2ed99c3914f19468c267344aa3a2f04e6.zip |
Merge pull request #18098 from nextcloud/fix/migration_import_order
Fix the import order of new migrations
Diffstat (limited to 'core/Command/Db')
-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! |