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
537 B
18 lines
537 B
# Generated by Django 4.2.7 on 2024-01-02 01:16 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('mock', '0003_rename_auditsessioncode_zzmockmodel_auditshowid'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
model_name='zzmockmodel', |
|
name='errorCode', |
|
field=models.CharField(help_text='清洗错误接口返回的错误状态', max_length=5, null=True, verbose_name='清洗错误接口返回的错误状态'), |
|
), |
|
]
|
|
|