# Generated by Django 6.0.1 on 2026-05-16 16:58 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('complaints', '0004_add_cancelled_partially_resolved_timestamps'), ] operations = [ migrations.AddField( model_name='complaint', name='sent_to_department', field=models.BooleanField(default=False, help_text='Whether this complaint has been sent to the primary department for visibility'), ), migrations.AddField( model_name='complaint', name='sent_to_department_at', field=models.DateTimeField(blank=True, help_text='When the complaint was sent to the primary department', null=True), ), migrations.AddField( model_name='complaintinvolveddepartment', name='sent', field=models.BooleanField(default=False, help_text='Whether this department has been sent the complaint'), ), migrations.AddField( model_name='complaintinvolveddepartment', name='sent_at', field=models.DateTimeField(blank=True, help_text='When the complaint was sent to this department', null=True), ), migrations.AddField( model_name='inquiry', name='sent_to_department', field=models.BooleanField(default=False, help_text='Whether this inquiry has been sent to the primary department for visibility'), ), migrations.AddField( model_name='inquiry', name='sent_to_department_at', field=models.DateTimeField(blank=True, help_text='When the inquiry was sent to the primary department', null=True), ), ]