comfy/wagtail_store/store/migrations/0003_product_info_product_n...

29 wiersze
734 B
Python

# Generated by Django 4.1.9 on 2023-05-28 11:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('store', '0002_product_available_producttemplate_tags_and_more'),
]
operations = [
migrations.AddField(
model_name='product',
name='info',
field=models.TextField(blank=True),
),
migrations.AddField(
model_name='product',
name='name',
field=models.CharField(blank=True, max_length=255),
),
migrations.AlterField(
model_name='producttemplate',
name='description',
field=models.TextField(blank=True),
),
]