45 lines
2.2 KiB
Rust
45 lines
2.2 KiB
Rust
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;
|
|
mod m20230404_133809_create_table_roles;
|
|
mod m20230404_133813_create_table_firewall_rules;
|
|
mod m20230427_170037_create_table_hosts;
|
|
mod m20230427_171517_create_table_hosts_static_addresses;
|
|
mod m20230427_171529_create_table_hosts_config_overrides;
|
|
mod m20230511_120511_create_table_host_enrollment_codes;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
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),
|
|
Box::new(m20230404_133809_create_table_roles::Migration),
|
|
Box::new(m20230404_133813_create_table_firewall_rules::Migration),
|
|
Box::new(m20230427_170037_create_table_hosts::Migration),
|
|
Box::new(m20230427_171517_create_table_hosts_static_addresses::Migration),
|
|
Box::new(m20230427_171529_create_table_hosts_config_overrides::Migration),
|
|
Box::new(m20230511_120511_create_table_host_enrollment_codes::Migration),
|
|
]
|
|
}
|
|
}
|