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.
23 lines
534 B
Python
23 lines
534 B
Python
# Generated by Django 3.2.19 on 2023-11-09 11:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0011_auto_20231109_1109'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='video',
|
|
name='error_reason',
|
|
),
|
|
migrations.AddField(
|
|
model_name='task',
|
|
name='error_reason',
|
|
field=models.CharField(max_length=512, null=True, verbose_name='错误信息'),
|
|
),
|
|
]
|