mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-16 02:45:41 +00:00
fb59f01058
* reconcile infra configs on webhook validate * make disable_p2p more intelligent * fix stats
17 lines
419 B
Rust
17 lines
419 B
Rust
use sea_orm_migration::prelude::*;
|
|
|
|
mod m20241029_000001_init;
|
|
mod m20260403_000002_scope_network_config_unique;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![
|
|
Box::new(m20241029_000001_init::Migration),
|
|
Box::new(m20260403_000002_scope_network_config_unique::Migration),
|
|
]
|
|
}
|
|
}
|