# Generated by Django 6.0.1 on 2026-06-15 10:11 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('complaints', '0019_add_response_token'), ] operations = [ migrations.AddField( model_name='complaint', name='floor', field=models.CharField(blank=True, default='', help_text='Floor where the incident occurred (defaults from department.floor)', max_length=50), ), migrations.AddField( model_name='complaint', name='zone', field=models.CharField(blank=True, default='', help_text='Free-text zone/sub-area where the incident occurred', max_length=100), ), ]