2024-03-20 21:50:45 -06:00
|
|
|
mod m20230701_000001_create_keys_table;
|
|
|
|
mod m20242801_000002_create_profiles_table;
|
2024-02-07 00:31:32 -07:00
|
|
|
|
|
|
|
use sea_orm_migration::prelude::*;
|
|
|
|
|
2024-02-18 22:55:29 -07:00
|
|
|
pub use sea_orm_migration::{MigratorTrait, SchemaManager};
|
2024-02-07 00:31:32 -07:00
|
|
|
|
|
|
|
pub struct Migrator;
|
|
|
|
|
|
|
|
impl MigratorTrait for Migrator {
|
|
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
|
|
vec![
|
2024-03-20 21:50:45 -06:00
|
|
|
Box::new(m20230701_000001_create_keys_table::Migration),
|
|
|
|
Box::new(m20242801_000002_create_profiles_table::Migration),
|
2024-02-07 00:31:32 -07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|