20 lines
443 B
Python
20 lines
443 B
Python
# Generated by Django 3.1.7 on 2021-03-31 08:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0013_auto_20210331_1100'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='productattrs',
|
|
name='value',
|
|
field=models.CharField(default='az', max_length=300),
|
|
preserve_default=False,
|
|
),
|
|
]
|