* CI compile migrator CLI * sea-orm-migration's CLI with only migration subcommand * Fix clippy warnings * Fixup * `sea-orm-cli migrate init`: write sea-orm-migration version based on CLI version
11 lines
287 B
Rust
11 lines
287 B
Rust
pub use super::cli;
|
|
pub use super::manager::SchemaManager;
|
|
pub use super::migrator::MigratorTrait;
|
|
pub use super::{MigrationName, MigrationTrait};
|
|
pub use async_std;
|
|
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;
|