mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-13 17:35:37 +00:00
13 lines
285 B
Rust
13 lines
285 B
Rust
use sea_orm_migration::prelude::*;
|
|
|
|
mod m20250101_000001_create_tables;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![Box::new(m20250101_000001_create_tables::Migration)]
|
|
}
|
|
}
|