From bebd7ffa97946e2881e204ed0260c35272e4117d Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 4 Sep 2023 16:06:16 +0900 Subject: [PATCH] docs: fix descriptions for `-g` option --- user_guide_src/source/dbmgmt/migration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_guide_src/source/dbmgmt/migration.rst b/user_guide_src/source/dbmgmt/migration.rst index 10492b94d7ce..175c85fe9da0 100644 --- a/user_guide_src/source/dbmgmt/migration.rst +++ b/user_guide_src/source/dbmgmt/migration.rst @@ -166,7 +166,7 @@ Refreshes the database state by first rolling back all migrations, and then migr You can use (refresh) with the following options: -- ``-g`` - to choose database group, otherwise default database group will be used. +- ``-g`` - to specify database group. If specified, only migrations for the specified database group will be run. If not specified, all migrations will be run. - ``-n`` - to choose namespace, otherwise ``App`` namespace will be used. - ``--all`` - to refresh all namespaces. - ``-f`` - to force a bypass confirmation question, it is only asked in a production environment. @@ -192,7 +192,7 @@ Displays a list of all migrations and the date and time they ran, or '--' if the You can use (status) with the following options: -- ``-g`` - to choose database group, otherwise default database group will be used. +- ``-g`` - to specify database group. If specified, only migrations for the specified database group will be checked. If not specified, all migrations will be checked. make:migration ==============