16 lines
341 B
Rust
16 lines
341 B
Rust
pub use sea_orm_migration::prelude::*;
|
|
|
|
mod m20260526_062833_create_account_table;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![
|
|
//
|
|
Box::new(m20260526_062833_create_account_table::Migration),
|
|
]
|
|
}
|
|
}
|