summaryrefslogtreecommitdiff
path: root/db/schema/emailLogs.ts
diff options
context:
space:
mode:
author0-Zz-ang <s1998319@gmail.com>2025-09-26 16:45:59 +0900
committer0-Zz-ang <s1998319@gmail.com>2025-09-26 16:45:59 +0900
commite9f707b10b81d9759243473dd03fa463573d0772 (patch)
tree3fa08deea9a5909acd32a9a1277345de3296cc97 /db/schema/emailLogs.ts
parentf8fc02e175f93466cd7693eb6e549c45362e785b (diff)
(박서영)이메일발신인조회페이지 생성
Diffstat (limited to 'db/schema/emailLogs.ts')
-rw-r--r--db/schema/emailLogs.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/schema/emailLogs.ts b/db/schema/emailLogs.ts
new file mode 100644
index 00000000..3a6f83dc
--- /dev/null
+++ b/db/schema/emailLogs.ts
@@ -0,0 +1,12 @@
+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(),
+});
+
+