From 480ae53f6de7dbeb4891064d783e513bef851b42 Mon Sep 17 00:00:00 2001 From: Anton Date: Wed, 27 Oct 2021 10:08:09 +0300 Subject: [PATCH] Fix migration command example in BaseMigrateController (#18978) --- framework/console/controllers/BaseMigrateController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/console/controllers/BaseMigrateController.php b/framework/console/controllers/BaseMigrateController.php index 97918da70b..4fbcdb2e46 100644 --- a/framework/console/controllers/BaseMigrateController.php +++ b/framework/console/controllers/BaseMigrateController.php @@ -632,7 +632,7 @@ abstract class BaseMigrateController extends Controller * For example: * * ``` - * yii migrate/create 'app\\migrations\\createUserTable' + * yii migrate/create app\\migrations\\createUserTable * ``` * * In case [[migrationPath]] is not set and no namespace is provided, the first entry of [[migrationNamespaces]] will be used.