# Generated by Django 5.2.9 on 2025-12-10 00:05 import uuid from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Notification', fields=[ ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), ('notification_type', models.CharField(choices=[('reminder', 'Task Reminder'), ('due_soon', 'Due Soon'), ('overdue', 'Overdue'), ('shared', 'Task Shared'), ('comment', 'Comment')], max_length=20)), ('title', models.CharField(max_length=255)), ('message', models.TextField()), ('is_read', models.BooleanField(default=False)), ('read_at', models.DateTimeField(blank=True, null=True)), ('created_at', models.DateTimeField(auto_now_add=True)), ], options={ 'db_table': 'notifications', 'ordering': ['-created_at'], }, ), migrations.CreateModel( name='ScheduledReminder', fields=[ ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), ('remind_at', models.DateTimeField()), ('is_sent', models.BooleanField(default=False)), ('sent_at', models.DateTimeField(blank=True, null=True)), ('created_at', models.DateTimeField(auto_now_add=True)), ], options={ 'db_table': 'scheduled_reminders', 'ordering': ['remind_at'], }, ), ]