* Update examples sea-orm version * Update example sea-schema version * Update [cli] sea-schema version * Fix [cli] cargo publish failed * Update CHANGELOG * Edit rocket example * Poem example with migration * Axum example with migration * Refactoring * Actix4 example with migration * Actix example with migration * Use sea_schema::migration::prelude
8 lines
129 B
Rust
8 lines
129 B
Rust
use migration::Migrator;
|
|
use sea_schema::migration::*;
|
|
|
|
#[async_std::main]
|
|
async fn main() {
|
|
cli::run_cli(Migrator).await;
|
|
}
|