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
Really practical gem, but it would be more intuitive to have a setup rake take that generates the migration that create the data_migration table. Issue is that if you create and migrate your first data_migration, the rollback will (given your data migration is rollbackable) just run the down of your file, but won't rollback your newly created data_migrations table
The text was updated successfully, but these errors were encountered:
ngouy
changed the title
Unable to rollback the created table data_migration
Unable to rollback the created table data_migrationsJul 5, 2021
Of course the fix is to create my own migration to remove the table, but I would expect a migrate and it's counterpart rollback to go back to the state it was before running migrate, if not for the data, at least for the schema.rb
Really practical gem, but it would be more intuitive to have a
setup
rake take that generates the migration that create the data_migration table. Issue is that if you create and migrate your first data_migration, the rollback will (given your data migration is rollbackable) just run thedown
of your file, but won't rollback your newly createddata_migrations
tableThe text was updated successfully, but these errors were encountered: