diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-09 13:42:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-09 13:42:36 +0200 |
commit | bcfaaf5294f963f8b043d1b952ba8425feae12d4 (patch) | |
tree | 68f659c3d279f98386126a700facd40c4c225d2f /core | |
parent | 576f370ddc19d280bb04e12180253318deea09e7 (diff) | |
parent | f877096a28f4dbeb600f5311fb85822db4d5a228 (diff) | |
download | nextcloud-server-bcfaaf5294f963f8b043d1b952ba8425feae12d4.tar.gz nextcloud-server-bcfaaf5294f963f8b043d1b952ba8425feae12d4.zip |
Merge pull request #6048 from nextcloud/fix-migration-generation
Fix typo in template for migration generation
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 4db82d6eff4..0825ddb7085 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -38,7 +38,7 @@ class GenerateCommand extends Command { protected static $_templateSimple = '<?php -namespace {{<namespace}}; +namespace {{namespace}}; use Doctrine\DBAL\Schema\Schema; use OCP\Migration\SimpleMigrationStep; |