toolu-orm-cli 0.2.0

Migration CLI (generate, migrate, status) for toolu-orm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod apply;
mod baseline;
mod ddl;
mod embedded;
mod error;
mod pending;
mod run;
mod store;
mod transaction;

pub use baseline::{mark_applied, mark_applied_through};
pub use ddl::migrations_table_ddl;
pub use embedded::{run_migrate_embedded, EmbeddedMigration};
pub use error::MigrateError;
pub use run::run_migrate;
pub use store::{ensure_migrations_table, get_applied_migrations, record_migration};