pique/_experiments/2024-03-02-database-benchmark/migration/src/lib.rs
Nicole Tietz-Sokolskaya 77d4ebb371 Add ADR for our choice of SQLite as our primary database,
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.
2024-03-16 11:12:46 -04:00

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)]
}
}