# Generated by Django 3.2.12 on 2025-04-21 08:03 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('crm', '0048_auto_20250304_1410'), ] operations = [ migrations.AlterField( model_name='candidate', name='opllevel', field=models.IntegerField(blank=True, choices=[(2, '高级工'), (3, '中级工'), (4, '初级工'), (0, '高级技师'), (1, '技师')], default=0, null=True), ), ]