mirror of
https://github.com/shiroyashik/doggy-watch.git
synced 2025-12-06 04:21:13 +03:00
14 lines
312 B
Rust
14 lines
312 B
Rust
pub use sea_orm_migration::prelude::*;
|
|
|
|
mod m20241211_182453_create_tables;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![
|
|
Box::new(m20241211_182453_create_tables::Migration),
|
|
]
|
|
}
|
|
}
|