# Generated by Django 4.2.27 on 2026-01-20 09:23

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('products', '0004_alter_category_name_alter_category_show_in_menu'),
    ]

    operations = [
        migrations.AddField(
            model_name='product',
            name='is_top_rated',
            field=models.BooleanField(default=False, help_text='Show in Top Rated Products section on landing page (max 3)'),
        ),
    ]
