You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
621 B
Python
19 lines
621 B
Python
# Generated by Django 3.2.19 on 2023-12-13 14:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0014_task_callbackurl'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='task',
|
|
name='analysis_status',
|
|
field=models.IntegerField(choices=[(100, '未分析'), (101, '分析中'), (102, '分析完成'), (103, "Couldn't open webcam or video"), (104, '视频文件不存在'), (105, '切分视频失败'), (106, '未知异常')], default=100, verbose_name='视频分析状态'),
|
|
),
|
|
]
|