Aventuras/src-tauri/migrations/007_story_style_review_state.sql
2026-01-07 21:24:00 -07:00

3 lines
232 B
SQL

-- Add style_review_state column to stories for persistent style review tracking
-- Stores JSON with messagesSinceLastReview (number) and lastReview (StyleReviewResult | null)
ALTER TABLE stories ADD COLUMN style_review_state TEXT;