We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a82817a commit 00cf7f6Copy full SHA for 00cf7f6
apps/web/src/lib/db/schema.ts
@@ -2,6 +2,9 @@ import { pgTable, text, timestamp, boolean } from "drizzle-orm/pg-core";
2
3
export const users = pgTable("users", {
4
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
8
name: text("name").notNull(),
9
email: text("email").notNull().unique(),
10
emailVerified: boolean("email_verified").default(false).notNull(),
0 commit comments