19 lines
		
	
	
		
			464 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			464 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2024-07-31 10:29
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('mtm', '0038_process_batch_append_equip'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='material',
 | 
						|
            name='unit_price',
 | 
						|
            field=models.DecimalField(blank=True, decimal_places=2, max_digits=14, null=True, verbose_name='单价'),
 | 
						|
        ),
 | 
						|
    ]
 |