242288aaf3
타 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>
7 lines
235 B
SQL
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;
|