Skip to main content

elph_agent/
migration.rs

1/// One versioned SQL migration applied to a local database.
2pub struct Migration {
3    pub version: i64,
4    pub name: &'static str,
5    pub up: &'static str,
6}