diff --git a/apps/host/index.html b/apps/host/index.html
index dfba7d47..2233f9b3 100644
--- a/apps/host/index.html
+++ b/apps/host/index.html
@@ -3,268 +3,495 @@
-
-
-
- Polkadot - The decentralized web, in your browser
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Polkadot
- Beta
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ s.createIndex("byProductId", "productId", { unique: false });
+ s.createIndex("byScheduledAt", "scheduledAt", { unique: false });
+ }
+ if (!db.objectStoreNames.contains("notification_counters"))
+ db.createObjectStore("notification_counters", {
+ keyPath: "productId",
+ });
+ };
+ req.onsuccess = function () {
+ resolve(req.result);
+ };
+ req.onerror = function () {
+ reject(new Error("IDB open failed"));
+ };
+ });
+
+
+
+
+
+
+
+
+
+
+
+
+