From f4c831537e3346895ee1a8bd076bdaf134e5f4b9 Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 4 Sep 2023 16:33:12 +0900 Subject: [PATCH] docs: add description for migration table --- user_guide_src/source/dbmgmt/migration.rst | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/user_guide_src/source/dbmgmt/migration.rst b/user_guide_src/source/dbmgmt/migration.rst index 175c85fe9da0..4af207164b73 100644 --- a/user_guide_src/source/dbmgmt/migration.rst +++ b/user_guide_src/source/dbmgmt/migration.rst @@ -223,13 +223,15 @@ Migration Preferences The following is a table of all the config options for migrations, available in **app/Config/Migrations.php**. -========================== ====================== ========================== ============================================================= -Preference Default Options Description -========================== ====================== ========================== ============================================================= -**enabled** true true / false Enable or disable migrations. -**table** migrations None The table name for storing the schema version number. -**timestampFormat** Y-m-d-His\_ The format to use for timestamps when creating a migration. -========================== ====================== ========================== ============================================================= +==================== ============ ============= ============================================================= +Preference Default Options Description +==================== ============ ============= ============================================================= +**enabled** true true / false Enable or disable migrations. +**table** migrations None The table name for storing the schema version number. This + table is always created in the default database group + (``$defaultGroup``). +**timestampFormat** Y-m-d-His\_ The format to use for timestamps when creating a migration. +==================== ============ ============= ============================================================= *************** Class Reference