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