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.
19 lines
487 B
19 lines
487 B
10 months ago
|
# Generated by Django 4.2.7 on 2024-01-08 07:41
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('update', '0009_rename_type_clientrelease_client_type'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='clientrelease',
|
||
|
name='client_ver',
|
||
|
field=models.CharField(default='', help_text='客户端版本', max_length=100, verbose_name='客户端版本'),
|
||
|
),
|
||
|
]
|