Skip to content

Commit d847cb9

Browse files
authored
Merge pull request #358 from bartfeenstra/patch-1
Upgrade instructions for projects without an existing metadata table definition.
2 parents 9d365d0 + 22ffa13 commit d847cb9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

UPGRADE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ doctrine_migrations:
4343
version_column_length: 191
4444
executed_at_column_name: 'executed_at'
4545
```
46+
If your project did not originally specify its own table definition configuration, you will need to configure the table name after the upgrade:
47+
48+
```yaml
49+
doctrine_migrations:
50+
storage:
51+
table_storage:
52+
table_name: 'migration_versions'
53+
```
54+
and then run the `doctrine:migrations:sync-metadata-storage` command.
4655
- The migration name has been dropped:
4756

4857
Before

0 commit comments

Comments
 (0)