0a7402b327
study_memo_cards 추출 파이프라인 + 버전키 폴러 + needs_review 컬럼. 운영 SR 코드(session_finalize/quiz_selection) 무수정.
- migrations 287~298: study_memo_cards/_evidence/_jobs/_progress(P1 휴면)·study_reminders·study_topics.focused_at·study_questions needs_review 3컬럼. dedup PARTIAL UNIQUE(deleted_at IS NULL).
- 워커: in-process RAG gather → MLX {cards} → 카드 가드(정량=evidence 원문 등장·cue/cloze 누출·dedup) → supersede 구버전 retire → append. 별 consumer 로 기존 study_queue 격리.
- 폴러 study_card_enqueue: 버전키 NOT EXISTS(source_version) 멱등 + ai_explanation_generated_at NOT NULL 가드 + per-poll LIMIT(thundering-herd).
- 검증: 실 prod 스키마 덤프 위 12 마이그 적용 OK + dedup/supersede/active-unique 기능 7/7 PASS + 정규화 util 15/15.
plan: PKM plans/2026-06-05-study-memo-card-p1-plan.html
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
722 B
SQL
16 lines
722 B
SQL
-- 290_study_memo_card_evidence.sql
|
|
-- 카드별 인용(citation) append-only 원장.
|
|
-- card-context 가 모은 evidence_refs (source_type document|question, source_id, snippet)
|
|
-- 를 카드 추출 워커가 그대로 적재. UPDATE/DELETE 없음 — updated_at/deleted_at 미포함.
|
|
-- card_id ON DELETE CASCADE: 카드 삭제 시 인용 동반삭제.
|
|
|
|
CREATE TABLE IF NOT EXISTS study_memo_card_evidence (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
card_id BIGINT NOT NULL REFERENCES study_memo_cards(id) ON DELETE CASCADE,
|
|
source_type VARCHAR(40) NOT NULL,
|
|
source_id BIGINT,
|
|
chunk_index INTEGER,
|
|
snippet TEXT,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|