Skip to content

Commit 5364243

Browse files
committed
fixup! Fix DB version.
1 parent 1531fa8 commit 5364243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/matrix-sdk-sqlite/src/event_cache_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ async fn run_migrations(conn: &SqliteAsyncConn, version: u8) -> Result<()> {
344344
txn.execute_batch(include_str!(
345345
"../migrations/event_cache_store/005_events_index_on_event_id.sql"
346346
))?;
347-
txn.set_db_version(4)
347+
txn.set_db_version(5)
348348
})
349349
.await?;
350350
}

0 commit comments

Comments
 (0)