From 00cf7f6ab7b35616290cfeab06256a14f6d4beba Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Sun, 8 Feb 2026 01:23:13 +0100 Subject: [PATCH] add todo --- apps/web/src/lib/db/schema.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/lib/db/schema.ts b/apps/web/src/lib/db/schema.ts index dcd7db67..88d71191 100644 --- a/apps/web/src/lib/db/schema.ts +++ b/apps/web/src/lib/db/schema.ts @@ -2,6 +2,9 @@ import { pgTable, text, timestamp, boolean } from "drizzle-orm/pg-core"; export const users = pgTable("users", { id: text("id").primaryKey(), + + // todo: implement fully anonymous sign-in for privacy + // we don't have any auth flows currently so this is fine for now name: text("name").notNull(), email: text("email").notNull().unique(), emailVerified: boolean("email_verified").default(false).notNull(),