summaryrefslogtreecommitdiff
path: root/db/schema/users.ts
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema/users.ts')
-rw-r--r--db/schema/users.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema/users.ts b/db/schema/users.ts
index 843ee2f3..8346c24b 100644
--- a/db/schema/users.ts
+++ b/db/schema/users.ts
@@ -16,6 +16,8 @@ export const users = pgTable("users", {
.defaultNow()
.notNull(),
imageUrl: varchar("image_url", { length: 1024 }),
+ language: varchar("language", { length: 10 }).default("en"), // 언어 필드 추가 (기본값: 영어)
+
});