20 lines
		
	
	
		
			583 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			583 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.0.5 on 2022-05-19 01:24
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('ability', '0031_auto_20220519_0903'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='qactionitem',
 | 
						|
            name='action',
 | 
						|
            field=models.CharField(choices=[('update', '更新'), ('citys:add', '新增备案城市'), ('citys:remove', '移除备案城市')], default='update', max_length=20, verbose_name='操作类型'),
 | 
						|
            preserve_default=False,
 | 
						|
        ),
 | 
						|
    ]
 |