commit c1c1763432c61768a798bd261ac3697d2c6c6756
parent c857ce9db32ed85b24407ff8f87e3f95436821f7
Author: Florian Dold <florian@dold.me>
Date: Sun, 30 Jun 2024 18:10:30 +0200
wallet-core: DB migration
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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>(),