19 lines
646 B
Rust
19 lines
646 B
Rust
use crate::common::migration::*;
|
|
use sea_orm_migration::prelude::*;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![
|
|
Box::new(m20220118_000001_create_cake_table::Migration),
|
|
Box::new(m20220118_000002_create_fruit_table::Migration),
|
|
Box::new(m20220118_000003_seed_cake_table::Migration),
|
|
Box::new(m20220118_000004_create_tea_enum::Migration),
|
|
Box::new(m20220923_000001_seed_cake_table::Migration),
|
|
Box::new(m20230109_000001_seed_cake_table::Migration),
|
|
]
|
|
}
|
|
}
|