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