# Generated by Django 5.0 on 2025-09-29 12:30 import django.db.models.deletion from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ('authentication', '0036_organization_phone'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='Notification', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('create_date', models.DateTimeField(auto_now_add=True)), ('modify_date', models.DateTimeField(auto_now=True)), ('creator_info', models.CharField(max_length=100, null=True)), ('modifier_info', models.CharField(max_length=100, null=True)), ('trash', models.BooleanField(default=False)), ('title', models.CharField(max_length=255, null=True)), ('message', models.TextField(blank=True, null=True)), ('type', models.CharField(choices=[('quota', 'Quota'), ('inventory', 'Inventory'), ('transaction', 'Transaction'), ('system', 'System')], default='system', max_length=50)), ('is_read', models.BooleanField(default=False)), ('delivered', models.BooleanField(default=False)), ('created_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_createddby', to=settings.AUTH_USER_MODEL)), ('modified_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_modifiedby', to=settings.AUTH_USER_MODEL)), ('organization', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='notifications', to='authentication.organization')), ], options={ 'abstract': False, }, ), ]