diff --git a/core/migrations/0033_alter_category_slug.py b/core/migrations/0033_alter_category_slug.py new file mode 100644 index 00000000..c9c1f746 --- /dev/null +++ b/core/migrations/0033_alter_category_slug.py @@ -0,0 +1,28 @@ +# Generated by Django 5.2 on 2025-06-21 17:38 + +import core.utils.db +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("core", "0032_alter_brand_slug_alter_category_slug_and_more"), + ] + + operations = [ + migrations.AlterField( + model_name="category", + name="slug", + field=core.utils.db.TweakedAutoSlugField( + allow_unicode=True, + blank=True, + editable=False, + max_length=88, + null=True, + overwrite=True, + populate_from=("parent__name", "name"), + unique=True, + ), + ), + ]