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
494 B
Python
19 lines
494 B
Python
# Generated by Django 3.2.19 on 2023-11-17 15:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0012_auto_20231109_1117'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='video',
|
|
name='video_status',
|
|
field=models.IntegerField(choices=[(1, '有效视频'), (2, '无效视频'), (3, '异常视频')], default=1, verbose_name='视频有效/无效'),
|
|
),
|
|
]
|