-- 200_attempts_outcome.sql (1/6) -- PR-9: study_question_attempts 에 outcome 컬럼 추가 (nullable, 백필 후 NOT NULL). -- 권장값: correct / wrong / unsure (강한 enum 미사용 — VARCHAR 권장값 패턴). -- "unsure" = 사용자가 풀이 중 "모르겠음" 선택. selected_choice 는 NULL. ALTER TABLE study_question_attempts ADD COLUMN IF NOT EXISTS outcome VARCHAR(20);