You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
505 B
18 lines
505 B
# Generated by Django 3.2.3 on 2021-06-24 11:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('api', '0002_auto_20210607_1743'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='apps',
|
|
name='new_bundle_name',
|
|
field=models.CharField(blank=True, help_text='应用新名称', max_length=64, null=True,
|
|
verbose_name='new_bundle_name'),
|
|
),
|
|
]
|
|
|