19 lines
413 B
Python
19 lines
413 B
Python
# Generated by Django 3.1.7 on 2021-03-31 08:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0012_auto_20210331_1058'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='producttype',
|
|
name='attr',
|
|
field=models.ManyToManyField(to='orders_app.ProductAttrs'),
|
|
),
|
|
]
|