pub use tosin_macros::gather_migrations as gather; pub struct Migration { pub id: usize, pub name: &'static str, pub prereqs: &'static [(&'static str, usize)], pub changes: &'static [DatabaseChange], } pub enum DatabaseChange { CreateModel, }