24 lines
		
	
	
		
			674 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			674 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.6 on 2021-10-25 07:33
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('pm', '0006_alter_subproductionprogress_count_real'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='subproductionplan',
 | 
						|
            name='end_date_real',
 | 
						|
            field=models.DateField(blank=True, null=True, verbose_name='实际完工日期'),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='subproductionplan',
 | 
						|
            name='start_date_real',
 | 
						|
            field=models.DateField(blank=True, null=True, verbose_name='实际开工日期'),
 | 
						|
        ),
 | 
						|
    ]
 |