# Generated by Django 5.2.7 on 2026-05-07 07:39

import django.utils.timezone
import django_ckeditor_5.fields
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("shop", "0025_banshixcontact"),
    ]

    operations = [
        migrations.AddField(
            model_name="banshixcontact",
            name="is_active",
            field=models.BooleanField(
                default=False,
                help_text="Mark this contact record as currently active for the user",
            ),
        ),
        migrations.AlterField(
            model_name="discount",
            name="description",
            field=django_ckeditor_5.fields.CKEditor5Field(),
        ),
        migrations.AlterField(
            model_name="inventorylog",
            name="notes",
            field=django_ckeditor_5.fields.CKEditor5Field(),
        ),
        migrations.AlterField(
            model_name="product",
            name="description",
            field=django_ckeditor_5.fields.CKEditor5Field(),
        ),
        migrations.AlterField(
            model_name="profile",
            name="address",
            field=django_ckeditor_5.fields.CKEditor5Field(
                default=django.utils.timezone.now
            ),
            preserve_default=False,
        ),
        migrations.AlterField(
            model_name="ticket",
            name="description",
            field=django_ckeditor_5.fields.CKEditor5Field(),
        ),
        migrations.AlterField(
            model_name="ticketreply",
            name="message",
            field=django_ckeditor_5.fields.CKEditor5Field(),
        ),
    ]
