import { pgTable, serial, text, timestamp } from "drizzle-orm/pg-core"; export const emailLogs = pgTable("email_logs", { id: serial("id").primaryKey(), from: text("from").notNull(), to: text("to").notNull(), cc: text("cc"), subject: text("subject").notNull(), createdAt: timestamp("created_at").defaultNow().notNull(), });