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.
TP_API2.0/app/migrations/0005_auto_20230703_1727.py

24 lines
636 B
Python

# Generated by Django 3.2.19 on 2023-07-03 17:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('app', '0004_auto_20230703_1718'),
]
operations = [
migrations.AlterField(
model_name='tp',
name='is_illegal',
field=models.BooleanField(blank=True, null=True, verbose_name='车辆是否违法'),
),
migrations.AlterField(
model_name='tp',
name='is_violation',
field=models.BooleanField(blank=True, null=True, verbose_name='执法人员是否违规'),
),
]