* Add `DeriveMigrationName` * CLI migrate generate without replacing migration name * Update migrations * Fixup
11 lines
306 B
Rust
11 lines
306 B
Rust
pub use super::cli;
|
|
pub use super::manager::SchemaManager;
|
|
pub use super::migrator::MigratorTrait;
|
|
pub use super::{MigrationName, MigrationTrait};
|
|
pub use async_trait;
|
|
pub use sea_orm;
|
|
pub use sea_orm::sea_query;
|
|
pub use sea_orm::sea_query::*;
|
|
pub use sea_orm::DbErr;
|
|
pub use sea_orm::DeriveMigrationName;
|