29 lines
		
	
	
		
			823 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			823 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.9 on 2021-12-08 06:08
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('inm', '0021_fifoitemproduct_iproduct'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='iproduct',
 | 
						|
            name='is_mtested',
 | 
						|
            field=models.BooleanField(default=False, verbose_name='是否军检'),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='iproduct',
 | 
						|
            name='is_mtestok',
 | 
						|
            field=models.BooleanField(blank=True, null=True, verbose_name='是否军检合格'),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='iproduct',
 | 
						|
            name='remark_mtest',
 | 
						|
            field=models.TextField(blank=True, null=True, verbose_name='军检备注'),
 | 
						|
        ),
 | 
						|
    ]
 |