From 2c68336754edba431ed614fa2f463b6ddd026d46 Mon Sep 17 00:00:00 2001 From: Viktor Khokhryakov Date: Thu, 22 Feb 2018 22:06:13 +0400 Subject: [PATCH] Fix #15724: MigrateController::optionAliases() have 2 same keys --- framework/console/controllers/MigrateController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/console/controllers/MigrateController.php b/framework/console/controllers/MigrateController.php index f5fdb0595d..a3d0d34a67 100644 --- a/framework/console/controllers/MigrateController.php +++ b/framework/console/controllers/MigrateController.php @@ -160,7 +160,7 @@ class MigrateController extends BaseMigrateController public function optionAliases() { return array_merge(parent::optionAliases(), [ - 'c' => 'comment', + 'C' => 'comment', 'f' => 'fields', 'p' => 'migrationPath', 't' => 'migrationTable',