24 lines
		
	
	
		
			661 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			661 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2024-10-10 03:40
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('enm', '0045_merge_20240913_1401'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='enstat',
 | 
						|
            name='total_production_cost',
 | 
						|
            field=models.FloatField(default=0, help_text='t', verbose_name='总产量(用于成本)'),
 | 
						|
        ),
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='enstat',
 | 
						|
            name='imaterial_data_dict',
 | 
						|
            field=models.JSONField(blank=True, default=dict, verbose_name='成本物料数据'),
 | 
						|
        ),
 | 
						|
    ]
 |