You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in the last released version of doctrine.
The bug come from the file lib/Doctrine/Migrations/Metadata/Storage/TableMetadataStorage.php.
The new function to compare the table doctrine_migration_versions is more strict than the previous one, which seems to be better.
And it now compares the _platformOptions from each column. Which was not the case before:
But the function getExpectedTable does not return the _platformOptions.
I don't know if it is the constructor of class Table which should have the responsiblity to get this options or if it's the role of getExpectedTable.
There is a bug in the last released version of doctrine.
The bug come from the file
lib/Doctrine/Migrations/Metadata/Storage/TableMetadataStorage.php
.The new function to compare the table
doctrine_migration_versions
is more strict than the previous one, which seems to be better.And it now compares the
_platformOptions
from each column. Which was not the case before:But the function
getExpectedTable
does not return the_platformOptions
.I don't know if it is the
constructor
of classTable
which should have the responsiblity to get this options or if it's the role ofgetExpectedTable
.The text was updated successfully, but these errors were encountered: