23 lines
608 B
Python
23 lines
608 B
Python
# Generated by Django 3.1.7 on 2021-04-02 17:45
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0018_auto_20210402_2042'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='orderproduct',
|
|
name='customer',
|
|
),
|
|
migrations.AddField(
|
|
model_name='order',
|
|
name='order_products',
|
|
field=models.ManyToManyField(blank=True, related_name='_order_order_products_+', through='orders_app.OrderProduct', to='orders_app.Product'),
|
|
),
|
|
]
|