24 lines
		
	
	
		
			624 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			624 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.9 on 2021-11-22 07:56
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('pm', '0014_subproductionplan_number'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='subproductionplan',
 | |
|             name='main_count_ok',
 | |
|             field=models.IntegerField(default=0, verbose_name='合格数'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='subproductionprogress',
 | |
|             name='count_ok',
 | |
|             field=models.IntegerField(default=0, verbose_name='合格数量'),
 | |
|         ),
 | |
|     ]
 |