# Generated by Django 6.0.1 on 2026-06-07 14:06 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('observations', '0010_observation_location_type_and_more'), ('organizations', '0011_area_department_area'), ] operations = [ migrations.AddField( model_name='observation', name='area', field=models.ForeignKey(blank=True, help_text='Physical area within the hospital where the observation was made', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='observations', to='organizations.area'), ), ]