Skip to content

Commit 81ff96d

Browse files
committed
fix(sqlite): Fix the database version.
The database has been updated but the version hasn't been bumped.
1 parent 49db60d commit 81ff96d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ impl SqliteCryptoStore {
175175
}
176176
}
177177

178-
const DATABASE_VERSION: u8 = 11;
178+
const DATABASE_VERSION: u8 = 12;
179179

180180
/// key for the dehydrated device pickle key in the key/value table.
181181
const DEHYDRATED_DEVICE_PICKLE_KEY: &str = "dehydrated_device_pickle_key";

0 commit comments

Comments
 (0)