Files
localMiniDrama/backend-node/migrations/08_add_video_generations_completed_at.sql
2026-06-30 15:07:31 +08:00

4 lines
220 B
SQL

-- video_generations 缺少 completed_at / error_msg 时补上(videoService 更新完成状态用)
ALTER TABLE video_generations ADD COLUMN completed_at TEXT;
ALTER TABLE video_generations ADD COLUMN error_msg TEXT;