Files
handmade-revolt-backend/crates/quark/src/traits/admin/migrations.rs
2022-06-02 12:17:30 +01:00

7 lines
139 B
Rust

use crate::Result;
#[async_trait]
pub trait AbstractMigrations: Sync + Send {
async fn migrate_database(&self) -> Result<()>;
}