Files
AIGC/demo/database_migration_20251119_add_duration.sql
AIGC Developer dbd06435cb feat: 完成管理员密码登录修复和项目清理
- 修复BCryptPasswordEncoder密码验证问题
- 实现密码设置提示弹窗功能(仅对无密码用户显示一次)
- 优化修改密码逻辑和验证流程
- 更新Welcome页面背景样式
- 清理临时SQL文件和测试代码
- 移动数据库备份文件到database/backups目录
- 删除不必要的MD文档和临时文件
2025-11-21 16:10:00 +08:00

9 lines
350 B
SQL
Raw Permalink 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.

-- 为 storyboard_video_tasks 表添加 duration 字段
-- 执行时间2025-11-19
ALTER TABLE storyboard_video_tasks
ADD COLUMN duration INT NOT NULL DEFAULT 10 COMMENT '视频时长(秒)' AFTER hd_mode;
-- 更新现有记录设置默认值为10秒
UPDATE storyboard_video_tasks SET duration = 10 WHERE duration IS NULL OR duration = 0;