-
Notifications
You must be signed in to change notification settings - Fork 194
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
Fixes #201 - fixeddb:migrate:with_data
to compare data schema versions correctly
#202
Conversation
also fixes #117 |
Cherry-picked in #218! Thanks for the contributions |
This ended up getting grouped in with changes from #211 in the 8.1.0 release, which was then completely reverted. This change is still needed. |
You're right, thanks for the bump. Just released on it's own via #235 |
@ilyakatz It doesn't look like that PR contains this fix. It's still pulling the current data version from data-migrate/tasks/databases.rake Line 25 in 88d4737
|
hm, @reidab, would you be interested to create a PR? |
This is a re-creation of ilyakatz#202, which fixes a bug where the AR migration schema version is incorrectly referenced instead of the data migration version. This causes data migrations be to be incorrectly re-run on an otherwise migrated database whenever the most recent schema version is lower than the most recent data version.
This is a re-creation of #202, which fixes a bug where the AR migration schema version is incorrectly referenced instead of the data migration version. This causes data migrations be to be incorrectly re-run on an otherwise migrated database whenever the most recent schema version is lower than the most recent data version.
#201