19 lines
		
	
	
		
			640 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			640 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.12 on 2023-09-27 04:45
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('sam', '0003_orderitem_mtask'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='order',
 | |
|             name='state',
 | |
|             field=models.PositiveSmallIntegerField(choices=[(10, '创建中'), (20, '已提交'), (30, '排产中'), (40, '排产完成'), (50, '已交付')], default=10, help_text="((10, '创建中'), (20, '已提交'), (30, '排产中'), (40, '排产完成'), (50, '已交付'))", verbose_name='订单状态'),
 | |
|         ),
 | |
|     ]
 |