Skip to main content

migrate

Function migrate 

Source
pub async fn migrate(pool: &Pool<Sqlite>) -> Result<()>
Expand description

Ensure the database is migrated to the latest version.

ยงExample

let db = pool("sqlite::memory:", false)?;
migrate(&db).await?;