import { pgTable, text, timestamp } from "drizzle-orm/pg-core"; import { auth } from "./auth"; export const sessionTable = pgTable("session", { id: text("id").primaryKey(), userId: text("user_id") .notNull() .references(() => auth.id, { onDelete: "cascade" }), expiresAt: timestamp("expires_at", { withTimezone: true, mode: "date", }).notNull(), });