# Generated by Django 4.1.3 on 2023-02-07 04:24

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('auth_apis', '0010_buyer_stripe_customer_id'),
        ('panel_apis', '0015_alter_marketingrequest_prduct_description_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='CustomerNotifications',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('message', models.CharField(max_length=100, null=True)),
                ('notification_type', models.CharField(max_length=100, null=True)),
                ('is_read', models.BooleanField(default=False, null=True)),
                ('start_date', models.DateTimeField(auto_now_add=True, null=True)),
                ('end_date', models.DateTimeField(null=True)),
                ('customer', models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to='auth_apis.buyer')),
            ],
            options={
                'db_table': 'customer_notifications',
            },
        ),
    ]
