Files
hyungi_document_server/migrations/227_progress_due_idx.sql
T
Hyungi Ahn 242288aaf3 fix(study): Phase 1 migrations 222-225 → 226-229 — markdown canonical layer 222 충돌 회피
타 PR (markdown canonical layer Phase 1B) 의 222_processing_queue_stage_markdown.sql 와
번호 충돌. init_db 가 'migration 버전 중복' 에러 띄움. 4파일 + SQL 헤더 주석 일괄 rename.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 09:32:16 +09:00

7 lines
235 B
SQL

-- 227_progress_due_idx.sql
-- 복습 큐 due_today 탭 — 사용자별 due_at 오름차순 조회 빠르게.
CREATE INDEX IF NOT EXISTS idx_progress_due
ON study_question_progress (user_id, due_at)
WHERE due_at IS NOT NULL;