mod m20230701_000001_create_keys_table; mod m20242801_000002_create_profiles_table; use sea_orm_migration::prelude::*; pub use sea_orm_migration::{MigratorTrait, SchemaManager}; pub struct Migrator; impl MigratorTrait for Migrator { fn migrations() -> Vec> { vec![ Box::new(m20230701_000001_create_keys_table::Migration), Box::new(m20242801_000002_create_profiles_table::Migration), ] } }