backed up by experiments demonstrating that SQLite will meet all of our requirements. This also introduces ADRs in the repo, and adds a README in preparation making the repository public.
12 lines
289 B
Rust
12 lines
289 B
Rust
pub use sea_orm_migration::prelude::*;
|
|
|
|
mod m20240307_110706_create_tables;
|
|
|
|
pub struct Migrator;
|
|
|
|
#[async_trait::async_trait]
|
|
impl MigratorTrait for Migrator {
|
|
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
|
vec![Box::new(m20240307_110706_create_tables::Migration)]
|
|
}
|
|
}
|