From 56e76b7f943521ece3cb72fff238ce4a26c2d0f2 Mon Sep 17 00:00:00 2001 From: Peter Moraes Date: Tue, 2 Aug 2016 15:28:38 -0300 Subject: [PATCH] refs #272 removing an unnecessary command --- Console/Command/MigrationShell.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Console/Command/MigrationShell.php b/Console/Command/MigrationShell.php index d4776e46..66f51515 100644 --- a/Console/Command/MigrationShell.php +++ b/Console/Command/MigrationShell.php @@ -457,7 +457,6 @@ public function generate() { $response = $this->in(__d('migrations', 'Do you want to compare the schema.php file to the database?'), array('y', 'n'), 'y'); } - $response = $this->in(__d('migrations', 'Do you want to compare the schema.php file to the database?'), array('y', 'n'), 'y'); if (strtolower($response) === 'y') { $this->_generateFromComparison($migration, $oldSchema, $comparison); $this->_migrationChanges($migration);