19 lines
		
	
	
		
			449 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			449 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2024-09-02 09:01
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('mtm', '0039_alter_material_unit_price'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='process',
 | 
						|
            name='mlog_need_ticket',
 | 
						|
            field=models.BooleanField(default=False, verbose_name='日志提交是否需要审批'),
 | 
						|
        ),
 | 
						|
    ]
 |