27 lines
605 B
Python
27 lines
605 B
Python
# Generated by Django 3.1.7 on 2021-03-31 07:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0010_order_product'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='name',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='product',
|
|
name='type',
|
|
),
|
|
migrations.AddField(
|
|
model_name='product',
|
|
name='type',
|
|
field=models.ManyToManyField(to='orders_app.ProductType'),
|
|
),
|
|
]
|