From 6ae23c466d63ac7a30ae4511fdde9756531634bb Mon Sep 17 00:00:00 2001 From: webimpress Date: Tue, 23 Jul 2019 12:24:22 +0100 Subject: [PATCH] Fixed default name in the documentation: Doctrine Database Migrations --- docs/en/reference/configuration.rst | 46 ++++++++++++++--------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/en/reference/configuration.rst b/docs/en/reference/configuration.rst index 1e777747c3..4f5ee758c6 100644 --- a/docs/en/reference/configuration.rst +++ b/docs/en/reference/configuration.rst @@ -90,29 +90,29 @@ Please note that if you want to use the YAML configuration option, you will need Here are details about what each configuration option does: -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| Name | Required | Default | Description | -+============================+=============+============================+==================================================================================+ -| name | no | Doctrine Migrations | The name that shows at the top of the migrations console application. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| migrations_namespace | yes | null | The PHP namespace your migration classes are located under. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| table_name | no | doctrine_migration_versions| The name of the table to track executed migrations in. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| column_name | no | version | The name of the column which stores the version name. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| column_length | no | 14 | The length of the column which stores the version name. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| executed_at_column_name | no | executed_at | The name of the column which stores the date that a migration was executed. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| migrations_directory | yes | null | The path to a directory where to look for migration classes. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| all_or_nothing | no | false | Whether or not to wrap multiple migrations in a single transaction. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| migrations | no | [] | Manually specify the array of migration versions instead of finding migrations. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ -| check_database_platform | no | true | Whether to add a database platform check at the beginning of the generated code. | -+----------------------------+-------------+----------------------------+----------------------------------------------------------------------------------+ ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| Name | Required | Default | Description | ++============================+============+==============================+==================================================================================+ +| name | no | Doctrine Database Migrations | The name that shows at the top of the migrations console application. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| migrations_namespace | yes | null | The PHP namespace your migration classes are located under. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| table_name | no | doctrine_migration_versions | The name of the table to track executed migrations in. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| column_name | no | version | The name of the column which stores the version name. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| column_length | no | 14 | The length of the column which stores the version name. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| executed_at_column_name | no | executed_at | The name of the column which stores the date that a migration was executed. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| migrations_directory | yes | null | The path to a directory where to look for migration classes. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| all_or_nothing | no | false | Whether or not to wrap multiple migrations in a single transaction. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| migrations | no | [] | Manually specify the array of migration versions instead of finding migrations. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ +| check_database_platform | no | true | Whether to add a database platform check at the beginning of the generated code. | ++----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+ Manually Providing Migrations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~