19 lines
		
	
	
		
			586 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			586 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.0.5 on 2023-05-11 02:03
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('quality', '0016_auto_20210625_1118'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='inspectitem',
 | |
|             name='type',
 | |
|             field=models.CharField(choices=[('重大风险', '重大风险'), ('严重风险', '严重风险'), ('主要风险', '主要风险'), ('合规', '合规'), ('体系', '体系')], default='合规', max_length=50, verbose_name='类型'),
 | |
|         ),
 | |
|     ]
 |