mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-11 05:30:41 +00:00
13 lines
291 B
Rust
13 lines
291 B
Rust
|
|
pub use sea_orm_migration::prelude::*;
|
||
|
|
|
||
|
|
mod m20250101_000001_initial_schema;
|
||
|
|
|
||
|
|
pub struct Migrator;
|
||
|
|
|
||
|
|
#[async_trait::async_trait]
|
||
|
|
impl MigratorTrait for Migrator {
|
||
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
||
|
|
vec![Box::new(m20250101_000001_initial_schema::Migration)]
|
||
|
|
}
|
||
|
|
}
|