excellent_migrations
excellent_migrations copied to clipboard
Feature Request: Reversible migrations
It would be great if excellent_migrations could enforce that a migration is reversible as a check.
That's a nice idea.
I guess it could be implemented by checking if def down
or def change
is implemented.
def change
may not be reversible (e.g. if execute
is used) but sometimes that may not be easy to detect.
@axelson I like your idea. Would you like to issue a pull request with the change?
Thank you! I likely wouldn't get this anytime soon. So it's probably best if you or someone else tackles it.