Browse Source

Change order for update-data and auto-increment scripts.

Gabriel Gosparo 6 năm trước cách đây
mục cha
commit
8cbd4be35e
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      composer.json

+ 3 - 3
composer.json

@@ -208,7 +208,7 @@
         "init-template-docsis": "php bin/console init:templates:docsis",
         "workflow-default": "php bin/console workflow:default --class=CablemodemBundle\\\\Entity\\\\Cablemodem --all",
         "profile-yml": "cp -n app/config/profile.yml.dist app/config/profile.yml",
-	"update-data": "php bin/console ik:update:data '/opt/cablemodem/app/DoctrineMigrations/src/'",
+	    "update-data": "php bin/console ik:update:data '/opt/cablemodem/app/DoctrineMigrations/src/'",
         "post-install-cmd": [
             "@workflows-commands",
             "@profile-yml",
@@ -216,10 +216,10 @@
             "@mkdir-dir-cache-sessions-logs",
             "@chmod-dir-cache-sessions-logs",
             "@doctrine-update",
-            "@auto-increment",
+            "@update-data",
             "@doctrine-migrations-down",
             "@doctrine-migrations",
-	    "@update-data",
+            "@auto-increment",
             "@init-template-docsis",
             "@workflow-default"
         ],