From: Vincent Vanwaelscappel Date: Fri, 6 Sep 2019 15:21:08 +0000 (+0200) Subject: wip #3013 @0:05 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=f87f1399f7e36f18a13abd998afc126981a4b7c3;p=pmi.git wip #3013 @0:05 --- diff --git a/app/Console/Commands/CMSMigration.php b/app/Console/Commands/CMSMigration.php index afde3a2..ab03782 100644 --- a/app/Console/Commands/CMSMigration.php +++ b/app/Console/Commands/CMSMigration.php @@ -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);