]> _ Git - pmi.git/commitdiff
wip #3013 @0:05
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 6 Sep 2019 15:21:08 +0000 (17:21 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 6 Sep 2019 15:21:08 +0000 (17:21 +0200)
app/Console/Commands/CMSMigration.php

index afde3a22a559d87b785a3b31b31ddd9faa162096..ab037825d40177bd5807588ccde42dd406258255 100644 (file)
@@ -26,7 +26,7 @@ class CMSMigration extends Command
         $modelssql = implode(',', $models);
 
         foreach ($tables as $table) {
-            echo 'Copy table ' . $table . ' from dev to staging' . "\n";
+            echo 'Copy table ' . $table . ' from staging to dev' . "\n";
             DB::statement('DROP TABLE pmi_dev.' . $table);
             DB::statement('CREATE TABLE pmi_dev.' . $table . ' LIKE pmi.' . $table);
             DB::statement('INSERT pmi_dev.' . $table . ' SELECT * FROM pmi.' . $table);