2022-07-26 07:53:38 +03:00
|
|
|
pub use sea_orm_migration::prelude::*;
|
|
|
|
|
2022-09-22 02:50:55 +03:00
|
|
|
mod m20220101_000001_create_table;
|
|
|
|
mod m20220921_181610_log_reverts;
|
2022-07-26 07:53:38 +03:00
|
|
|
|
|
|
|
pub struct Migrator;
|
|
|
|
|
|
|
|
#[async_trait::async_trait]
|
|
|
|
impl MigratorTrait for Migrator {
|
|
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
2022-09-21 22:54:40 +03:00
|
|
|
vec![
|
|
|
|
Box::new(m20220101_000001_create_table::Migration),
|
|
|
|
Box::new(m20220921_181610_log_reverts::Migration),
|
|
|
|
]
|
2022-07-26 07:53:38 +03:00
|
|
|
}
|
|
|
|
}
|