Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue1024 #1027

Merged
merged 1 commit into from
Jun 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions docs/en/reference/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ Now, in the root of your project place a file named ``migrations.php``, ``migrat
<?php

return [
'name' => 'My Project Migrations',

'table_storage' => [
'table_name' => 'doctrine_migration_versions',
'version_column_name' => 'version',
Expand All @@ -45,8 +43,6 @@ Now, in the root of your project place a file named ``migrations.php``, ``migrat

.. code-block:: yaml

name: "My Project Migrations"

table_storage:
table_name: doctrine_migration_versions
version_column_name: version
Expand All @@ -69,8 +65,6 @@ Now, in the root of your project place a file named ``migrations.php``, ``migrat
xsi:schemaLocation="http://doctrine-project.org/schemas/migrations/configuration/3.0
http://doctrine-project.org/schemas/migrations/configuration-3.0.xsd">

<name>My Project Migrations</name>

<storage>
<table-storage
table-name="doctrine_migration_versions"
Expand All @@ -93,9 +87,6 @@ Now, in the root of your project place a file named ``migrations.php``, ``migrat
.. code-block:: json

{
"name": "My Project Migrations",
"name": "My Project Migrations",

"table_storage": {
"table_name: "doctrine_migration_versions",
"version_column_name": "version",
Expand Down Expand Up @@ -124,8 +115,6 @@ Here are details about what each configuration option does:
+----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+
| Name | Required | Default | Description |
+============================+============+==============================+==================================================================================+
| name | no | Doctrine Database Migrations | The name that shows at the top of the migrations console application. |
+----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+
| migrations_paths<string, string> | yes | null | The PHP namespace your migration classes are located under and the path to a directory where to look for migration classes. |
+----------------------------+------------+------------------------------+----------------------------------------------------------------------------------+
| table_storage | no | | Used by doctrine migrations to track the currently executed migrations |
Expand Down