Files
AIGC/demo/fix_storyboard_result_url.sql

8 lines
245 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 修改分镜视频任务表的 result_url 字段为 TEXT 类型
-- 解决 Data too long for column 'result_url' 错误
ALTER TABLE storyboard_video_tasks
MODIFY COLUMN result_url TEXT COMMENT '分镜图URL可能是多个URL拼接';