web3-proxy/migration/src/lib.rs

17 lines
407 B
Rust
Raw Normal View History

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>> {
vec![
Box::new(m20220101_000001_create_table::Migration),
Box::new(m20220921_181610_log_reverts::Migration),
]
2022-07-26 07:53:38 +03:00
}
}