From d03fa0df37daa9d83dfb9f70957e52865a394943 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Mon, 6 Apr 2026 13:41:20 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20source=5Fchannel=20enum=EC=97=90=20'news?= =?UTF-8?q?'=20=EC=B6=94=EA=B0=80=20(ORM=20=EB=88=84=EB=9D=BD)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- app/models/document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/document.py b/app/models/document.py index 6fcb71f..250980f 100644 --- a/app/models/document.py +++ b/app/models/document.py @@ -70,7 +70,7 @@ class Document(Base): # 메타데이터 source_channel: Mapped[str | None] = mapped_column( Enum("law_monitor", "devonagent", "email", "web_clip", - "tksafety", "inbox_route", "manual", "drive_sync", + "tksafety", "inbox_route", "manual", "drive_sync", "news", name="source_channel") ) data_origin: Mapped[str | None] = mapped_column(