Skip to content

Commit 00cf7f6

Browse files
committed
add todo
1 parent a82817a commit 00cf7f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

apps/web/src/lib/db/schema.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import { pgTable, text, timestamp, boolean } from "drizzle-orm/pg-core";
22

33
export const users = pgTable("users", {
44
id: text("id").primaryKey(),
5+
6+
// todo: implement fully anonymous sign-in for privacy
7+
// we don't have any auth flows currently so this is fine for now
58
name: text("name").notNull(),
69
email: text("email").notNull().unique(),
710
emailVerified: boolean("email_verified").default(false).notNull(),

0 commit comments

Comments
 (0)