19 lines
397 B
Python
19 lines
397 B
Python
# Generated by Django 3.1.7 on 2021-03-31 05:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0003_producttype_attributes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='productattr',
|
|
name='value',
|
|
field=models.CharField(max_length=30),
|
|
),
|
|
]
|