19 lines
		
	
	
		
			432 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			432 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.0.5 on 2022-03-02 03:03
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('supervision', '0029_record_dept_yes'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='record',
 | |
|             name='dept_yes',
 | |
|             field=models.BooleanField(default=True, verbose_name='二级单位是否确认'),
 | |
|         ),
 | |
|     ]
 |