bizi-server 0.5.1

Task runner server for the bizi project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod m20260212_000001_create_task_runs;
mod m20260212_000002_create_task_run_logs;

use sea_orm_migration::prelude::*;

pub struct Migrator;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
    fn migrations() -> Vec<Box<dyn MigrationTrait>> {
        vec![
            Box::new(m20260212_000001_create_task_runs::Migration),
            Box::new(m20260212_000002_create_task_run_logs::Migration),
        ]
    }
}