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
425 B
Python
19 lines
425 B
Python
1 year ago
|
# Generated by Django 3.2.19 on 2023-11-24 10:16
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('app', '0013_video_video_status'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='task',
|
||
|
name='callbackUrl',
|
||
|
field=models.CharField(max_length=512, null=True, verbose_name='回调地址'),
|
||
|
),
|
||
|
]
|