20 lines
No EOL
542 B
Rust
20 lines
No EOL
542 B
Rust
#![allow(elided_lifetimes_in_paths)]
|
|
#![allow(clippy::wildcard_imports)]
|
|
pub use sea_orm_migration::prelude::*;
|
|
|
|
mod m20220101_000001_users;
|
|
mod m20231103_114510_notes;
|
|
|
|
mod m20241016_180911_servers;
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![
|
|
Box::new(m20220101_000001_users::Migration),
|
|
Box::new(m20231103_114510_notes::Migration),
|
|
Box::new(m20241016_180911_servers::Migration),
|
|
]
|
|
}
|
|
} |