From f737b314365bc4ad2cdc7f962427cc65fe6306e5 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Thu, 19 Mar 2026 15:10:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20source=5Fpost=5Fid=20INTEGER=20=E2=86=92?= =?UTF-8?q?=20BIGINT=20(Synology=20Chat=20post=5Fid=20=EB=B2=94=EC=9C=84?= =?UTF-8?q?=20=EC=B4=88=EA=B3=BC)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- init/migrate-v6.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/migrate-v6.sql b/init/migrate-v6.sql index 113ffef..157e903 100644 --- a/init/migrate-v6.sql +++ b/init/migrate-v6.sql @@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS retrospect.entries ( confidence REAL DEFAULT 0.0, source VARCHAR(20) DEFAULT 'chat', reviewed BOOLEAN DEFAULT FALSE, - source_post_id INTEGER, + source_post_id BIGINT, username VARCHAR(100) );