aboutsummaryrefslogtreecommitdiff
path: root/src/dbTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-18 01:37:30 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-18 01:37:30 +0100
commit82d9c2a7cd2e343866997438d44aa5422190a028 (patch)
tree3feef2e8b7db1680e42818419195c95946751783 /src/dbTypes.ts
parentd4c2f6f6f992c36609c4a029afcb378a7f839ddf (diff)
downloadwallet-core-82d9c2a7cd2e343866997438d44aa5422190a028.tar.xz
access refunds correctly
Diffstat (limited to 'src/dbTypes.ts')
-rw-r--r--src/dbTypes.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dbTypes.ts b/src/dbTypes.ts
index 86f3e0a1e..9e9663219 100644
--- a/src/dbTypes.ts
+++ b/src/dbTypes.ts
@@ -782,6 +782,8 @@ export interface PurchaseRecord {
* Set to 0 if no refund was made on the purchase.
*/
timestamp_refund: number;
+
+ lastSessionSig: string | undefined;
}
@@ -889,6 +891,7 @@ export namespace Stores {
keyPath: "id",
});
}
+ urlIndex = new Index<string, ProposalDownloadRecord>(this, "urlIndex", "url");
timestampIndex = new Index<string, ProposalDownloadRecord>(this, "timestampIndex", "timestamp");
}