feat: export waitlist

This commit is contained in:
Maze Winther
2025-08-17 18:50:13 +02:00
parent bb461fa9fb
commit f3ddf26334
8 changed files with 681 additions and 59 deletions
+11
View File
@@ -57,3 +57,14 @@ export const verifications = pgTable("verifications", {
() => /* @__PURE__ */ new Date()
),
}).enableRLS();
export const exportWaitlist = pgTable("export_waitlist", {
id: text("id").primaryKey(),
email: text("email").notNull().unique(),
createdAt: timestamp("created_at")
.$defaultFn(() => /* @__PURE__ */ new Date())
.notNull(),
updatedAt: timestamp("updated_at")
.$defaultFn(() => /* @__PURE__ */ new Date())
.notNull(),
}).enableRLS();