22 lines
		
	
	
		
			472 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			472 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.9 on 2021-11-23 01:45
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('wpm', '0020_alter_operationwproduct_wproduct'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='operationwproduct',
 | 
						|
            name='production_plan',
 | 
						|
        ),
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='wproduct',
 | 
						|
            name='production_plan',
 | 
						|
        ),
 | 
						|
    ]
 |