pub use sea_orm_migration::prelude::*; pub struct Migrator; pub mod m20230402_162601_create_table_users; pub mod m20230402_183515_create_table_magic_links; pub mod m20230402_213712_create_table_session_tokens; pub mod m20230402_232316_create_table_organizations; pub mod m20230402_233043_create_table_api_keys; pub mod m20230402_233047_create_table_api_keys_scopes; pub mod m20230402_234025_create_table_totp_authenticators; pub mod m20230403_002256_create_table_auth_tokens; pub mod m20230403_142517_create_table_signing_cas; pub mod m20230403_173431_create_table_networks; #[async_trait::async_trait] impl MigratorTrait for Migrator { fn migrations() -> Vec> { vec![ Box::new(m20230402_162601_create_table_users::Migration), Box::new(m20230402_183515_create_table_magic_links::Migration), Box::new(m20230402_213712_create_table_session_tokens::Migration), Box::new(m20230402_232316_create_table_organizations::Migration), Box::new(m20230402_233043_create_table_api_keys::Migration), Box::new(m20230402_233047_create_table_api_keys_scopes::Migration), Box::new(m20230402_234025_create_table_totp_authenticators::Migration), Box::new(m20230403_002256_create_table_auth_tokens::Migration), Box::new(m20230403_142517_create_table_signing_cas::Migration), Box::new(m20230403_173431_create_table_networks::Migration), ] } }