summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-04-02 12:06:09 +0200
committerFlorian Dold <florian@dold.me>2024-04-02 12:06:09 +0200
commit0adec32521ecb1e07a7ab6df9556c8bbe30b9cc4 (patch)
tree142d502291e8234a0e93befc4938c6200c3618ca /packages/taler-wallet-core/src
parent026d9cacaec62fe6c853b3f716a98e6e82e1dd19 (diff)
downloadwallet-core-0adec32521ecb1e07a7ab6df9556c8bbe30b9cc4.tar.gz
wallet-core-0adec32521ecb1e07a7ab6df9556c8bbe30b9cc4.tar.bz2
wallet-core-0adec32521ecb1e07a7ab6df9556c8bbe30b9cc4.zip
wallet-core: missing DB migration for denomLossEvents index
Diffstat (limited to 'packages/taler-wallet-core/src')
-rw-r--r--packages/taler-wallet-core/src/db.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
index 4ead3cf5c..487927b8f 100644
--- a/packages/taler-wallet-core/src/db.ts
+++ b/packages/taler-wallet-core/src/db.ts
@@ -150,7 +150,7 @@ export const CURRENT_DB_CONFIG_KEY = "currentMainDbName";
* backwards-compatible way or object stores and indices
* are added.
*/
-export const WALLET_DB_MINOR_VERSION = 9;
+export const WALLET_DB_MINOR_VERSION = 10;
declare const symDbProtocolTimestamp: unique symbol;
@@ -2393,7 +2393,9 @@ export const WalletStoresV1 = {
byCurrency: describeIndex("byCurrency", "currency", {
versionAdded: 9,
}),
- byStatus: describeIndex("byStatus", "status"),
+ byStatus: describeIndex("byStatus", "status", {
+ versionAdded: 10,
+ }),
},
}),
transactions: describeStoreV2({