회의록 AI: 추가 지시 우선, 체크리스트/액션 시스템 강제 완화, include_checklist 기본 끔

Made-with: Cursor
This commit is contained in:
2026-04-15 17:15:51 +09:00
parent 51a402d223
commit 046366599d
6 changed files with 58 additions and 69 deletions

View File

@@ -144,7 +144,7 @@ CREATE TABLE IF NOT EXISTS meeting_ai_prompts (
include_attendees BOOLEAN NOT NULL DEFAULT true,
include_summary BOOLEAN NOT NULL DEFAULT true,
include_action_items BOOLEAN NOT NULL DEFAULT true,
include_checklist BOOLEAN NOT NULL DEFAULT true,
include_checklist BOOLEAN NOT NULL DEFAULT false,
custom_instructions TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
@@ -154,7 +154,7 @@ CREATE TABLE IF NOT EXISTS meeting_ai_prompts (
CREATE INDEX IF NOT EXISTS idx_meeting_ai_prompts_user ON meeting_ai_prompts (user_email);
-- 기존 DB: 신규 행 기본값만 갱신(이미 저장된 include_checklist 값은 유지)
ALTER TABLE meeting_ai_prompts ALTER COLUMN include_checklist SET DEFAULT true;
ALTER TABLE meeting_ai_prompts ALTER COLUMN include_checklist SET DEFAULT false;
CREATE TABLE IF NOT EXISTS meeting_ai_meetings (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),