pub async fn migrate(pool: &Pool<Sqlite>) -> Result<()>
Ensure the database is migrated to the latest version.
let db = pool("sqlite::memory:", false)?; migrate(&db).await?;