aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-06-30 18:10:30 +0200
committerFlorian Dold <florian@dold.me>2024-06-30 18:10:30 +0200
commitc1c1763432c61768a798bd261ac3697d2c6c6756 (patch)
tree2c0db78fe028852ebc50f7ddedce5c79f2921b49 /packages
parentc857ce9db32ed85b24407ff8f87e3f95436821f7 (diff)
downloadwallet-core-c1c1763432c61768a798bd261ac3697d2c6c6756.tar.xz
wallet-core: DB migration
Diffstat (limited to 'packages')
-rw-r--r--packages/taler-wallet-core/src/db.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
index 336ffab67..138db157e 100644
--- a/packages/taler-wallet-core/src/db.ts
+++ b/packages/taler-wallet-core/src/db.ts
@@ -154,7 +154,7 @@ export const CURRENT_DB_CONFIG_KEY = "currentMainDbName";
* backwards-compatible way or object stores and indices
* are added.
*/
-export const WALLET_DB_MINOR_VERSION = 11;
+export const WALLET_DB_MINOR_VERSION = 12;
declare const symDbProtocolTimestamp: unique symbol;
@@ -2428,6 +2428,7 @@ export const WalletStoresV1 = {
recordCodec: passthroughCodec<CurrencyInfoRecord>(),
storeName: "currencyInfo",
keyPath: "scopeInfoStr",
+ versionAdded: 12,
}),
globalCurrencyAuditors: describeStoreV2({
recordCodec: passthroughCodec<GlobalCurrencyAuditorRecord>(),