19 lines
		
	
	
		
			423 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			423 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2025-01-13 09:22
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('wpm', '0084_alter_mlogbw_ftest'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='handover',
 | 
						|
            name='new_batch',
 | 
						|
            field=models.TextField(blank=True, null=True, verbose_name='新批次号'),
 | 
						|
        ),
 | 
						|
    ]
 |