Files
openccb/services/cms-service/migrations/20260303000000_add_video_generation_status.sql
T
2026-03-03 17:44:24 -03:00

4 lines
246 B
SQL

-- Add video_generation_status and video_generation_error to lessons table
ALTER TABLE lessons ADD COLUMN IF NOT EXISTS video_generation_status VARCHAR(20) DEFAULT 'idle';
ALTER TABLE lessons ADD COLUMN IF NOT EXISTS video_generation_error TEXT;