Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled
- 消费记录点击行弹出任务详情弹窗(任务ID、状态、错误原因+原始错误、基本信息、完整提示词、参考素材) - ReferenceList 共用组件:图片点击大图、视频/音频点击播放、下载按钮 - VideoDetailModal 参考素材加播放和下载按钮 - 素材库引用图片修复:用 thumb_url 替代 asset:// 显示,轮询时也更新 references - raw_error 字段:存储火山原始错误信息,仅管理员弹窗可见 - CSV 导出扩充至 21 列(超管)/ 17 列(团管):新增任务ID、完成时间、视频时长、比例、种子值、原始错误、参考素材数 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
443 B
Python
19 lines
443 B
Python
# Generated by Django 4.2.29 on 2026-03-25 02:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('generation', '0011_add_completed_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='generationrecord',
|
|
name='raw_error',
|
|
field=models.TextField(blank=True, default='', verbose_name='原始错误信息'),
|
|
),
|
|
]
|