22 lines
		
	
	
		
			455 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			455 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.9 on 2021-12-08 06:08
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('sam', '0009_alter_saleproduct_is_mtestok'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='saleproduct',
 | 
						|
            name='is_mtested',
 | 
						|
        ),
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='saleproduct',
 | 
						|
            name='is_mtestok',
 | 
						|
        ),
 | 
						|
    ]
 |