19 lines
		
	
	
		
			430 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			430 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.12 on 2023-10-26 10:18
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('mtm', '0018_material_need_route'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='route',
 | |
|             name='is_count_utask',
 | |
|             field=models.BooleanField(default=False, verbose_name='是否主任务统计'),
 | |
|         ),
 | |
|     ]
 |