19 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.9 on 2022-01-29 07:12
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('mtm', '0044_subproduction_need_combtest'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='usedstep',
 | 
						|
            name='need_test',
 | 
						|
            field=models.BooleanField(default=False, verbose_name='工序内检验'),
 | 
						|
        ),
 | 
						|
    ]
 |