# Generated by Django 6.0.6 on 2026-08-21 07:20 import django.db.models.deletion import uuid from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ('club', '0029_duesinvoice'), ('contenttypes', '0002_remove_content_type_name'), ('members', '0006_parentclaim_submitted_by_user'), ] operations = [ migrations.CreateModel( name='Notification', fields=[ ('created', models.DateTimeField(auto_now_add=True, verbose_name='created')), ('modified', models.DateTimeField(auto_now=True, verbose_name='modified')), ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), ('title', models.CharField(max_length=255, verbose_name='title')), ('body', models.TextField(verbose_name='body')), ('object_id', models.CharField(blank=True, max_length=255, null=True)), ('sent_at', models.DateTimeField(blank=True, null=True, verbose_name='sent at')), ('sent_to_emails', models.JSONField(blank=True, default=list, help_text="Every email address this actually went to -- the member's own, and/or a parent/guardian's. Empty means nobody reachable was found.", verbose_name='sent to')), ('read_at', models.DateTimeField(blank=True, help_text="Set once there's somewhere for a member to read this -- not used yet.", null=True, verbose_name='read at')), ('club', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='%(class)ss', to='club.club')), ('content_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype')), ('member', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='notifications', to='members.member', verbose_name='member')), ], options={ 'verbose_name': 'notification', 'verbose_name_plural': 'notifications', 'ordering': ['-created'], 'indexes': [models.Index(fields=['content_type', 'object_id'], name='notificatio_content_702c56_idx')], }, ), ]