Files
ragflow_python/migration/src/lib.rs
Kould c6d0d85ab5 feat: impl dao (#1)
Co-authored-by: kould <2435992353@qq.com>
2023-12-13 12:32:01 +08:00

13 lines
287 B
Rust

pub use sea_orm_migration::prelude::*;
mod m20220101_000001_create_table;
pub struct Migrator;
#[async_trait::async_trait]
impl MigratorTrait for Migrator {
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
vec![Box::new(m20220101_000001_create_table::Migration)]
}
}