samey-migration 0.1.0

Migrations for Samey, Sam's small image board
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use sea_orm_migration::prelude::*;

mod m20250405_000001_create_table;

pub struct Migrator;

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