This commit is contained in:
Maze Winther 2026-02-08 01:23:13 +01:00
parent a82817a703
commit 00cf7f6ab7
1 changed files with 3 additions and 0 deletions

View File

@ -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(),