aboutsummaryrefslogtreecommitdiff
path: root/src/dbTypes.ts
diff options
context:
space:
mode:
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");
}