mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 09:47:50 +03:00
17 lines
342 B
Rust
17 lines
342 B
Rust
pub use sea_orm_migration::prelude::MigratorTrait;
|
|
|
|
use sea_orm_migration::prelude::*;
|
|
|
|
mod m20250904_024854_init;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![
|
|
Box::new(m20250904_024854_init::Migration),
|
|
]
|
|
}
|
|
}
|