# Generated by Django 5.1.1 on 2024-10-09 06:07

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


class Migration(migrations.Migration):

    dependencies = [
        ('notification', '0002_notifications'),
    ]

    operations = [
        migrations.CreateModel(
            name='notificationreceiver',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('user_id', models.BigIntegerField()),
                ('notification', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='notification.notifications')),
            ],
            options={
                'db_table': 'notificationreceiver',
            },
        ),
    ]
