A crate for testing Sea Orm Migrators. To check if when you call up
and then down
on them. They work in both directions.
It runs your migrations up and down one at a time. Taking a look at the differences it does to a database. Checking if the reverse returns a database into it's previous state.
The most common use case is simply to test if your Migrator
is reversible.
In a test. Then error if it is not.
To do this add the following test to your migrations project ...
```rust
mod testmigrator { use crate::path::to::my::Migrator; use ::assertmigratorreversible::assertmigrator_reversible;
#[test]
fn it_should_have_reversible_migrations() {
assert_migrator_reversible(Migrator);
}
} ```