19 lines
579 B
Python
19 lines
579 B
Python
# Generated by Django 3.0.5 on 2021-12-14 05:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('consulting', '0003_policy_validation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='professional',
|
|
name='professionalfield',
|
|
field=models.CharField(choices=[(1, '环保领域'), (2, '建工建材'), (1, '食品领域'), (2, '水利工程'), (1, '检定校准'), (2, '其他领域')], default=1, max_length=50, verbose_name='领域类别'),
|
|
),
|
|
]
|