1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[derive(strum_macros::Display)] pub enum MigrationStatus { #[strum(to_string = "applied")] Applied, #[strum(to_string = "reverted")] Reverted, } pub mod project; pub use project::*; pub mod runtime; pub use runtime::*;