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
524 B
18 lines
524 B
# Generated by Django 3.0.3 on 2021-01-27 21:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('api', '0011_auto_20210125_1137'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='udidsyncdeveloper',
|
|
name='platform',
|
|
field=models.SmallIntegerField(choices=[(0, 'fly分发'), (1, 'app developer')], default=0,
|
|
verbose_name='udid所在平台'),
|
|
),
|
|
]
|
|
|