File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ doctrine_migrations:
40
40
table_storage :
41
41
table_name : ' migration_versions'
42
42
version_column_name : ' version'
43
- version_column_length : 1024
43
+ version_column_length : 191
44
44
executed_at_column_name : ' executed_at'
45
45
` ` `
46
46
- The migration name has been dropped:
@@ -56,16 +56,19 @@ After
56
56
57
57
The parameter ` name` has been dropped.
58
58
59
- - Custom migration templates :
60
59
61
- Before
60
+ - The default for `table_name` changed from `migration_versions` to `doctrine_migration_versions`. If you did not
61
+ specify the `table_name` option, you now need to declare it explicitly to not lose migration data.
62
62
63
- ` ` ` php
64
- final class Version<version> extends AbstractMigration
63
+ ` ` ` yaml
64
+ doctrine_migrations:
65
+ storage:
66
+ table_storage:
67
+ table_name: 'migration_versions'
65
68
` ` `
66
69
67
- After
70
+ # ## Underlying doctrine/migrations library
68
71
69
- ` ` ` php
70
- final class <className> extends AbstractMigration
71
- ` ` `
72
+ Upgrading this bundle to `3.0` will also update the `doctrine/migrations` library to the version `3.0`.
73
+ Backward incompatible changes in `doctrine/migrations` 3.0
74
+ are documented in the dedicated [UPGRADE](https://github.com/doctrine/migrations/blob/3.0.x/UPGRADE.md) document.
You can’t perform that action at this time.
0 commit comments