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