27 lines
628 B
Python
27 lines
628 B
Python
# Generated by Django 3.1.7 on 2021-04-02 08:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0009_collection_collectiontitle'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='orderproduct',
|
|
name='attr1',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='orderproduct',
|
|
name='attr2',
|
|
),
|
|
migrations.AddField(
|
|
model_name='orderproduct',
|
|
name='info',
|
|
field=models.CharField(blank=True, max_length=512),
|
|
),
|
|
]
|