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
447 B
Python
19 lines
447 B
Python
# Generated by Django 3.2.19 on 2023-10-25 13:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0007_alter_video_error_reason'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='video',
|
|
name='ftp_path',
|
|
field=models.CharField(max_length=512, null=True, unique=True, verbose_name='视频ftp路径'),
|
|
),
|
|
]
|