# Generated by Django 6.0.1 on 2026-07-01 17:24 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('organizations', '0014_remove_department_manager_1st'), ] operations = [ migrations.AddField( model_name='hospital', name='letterhead', field=models.ImageField(blank=True, help_text='A4 transparent PNG with hospital header/footer artwork for PDF letterhead', null=True, upload_to='hospital_branding/'), ), migrations.AddField( model_name='hospital', name='stamp', field=models.ImageField(blank=True, help_text='Transparent stamp PNG placed at bottom-right of PDF pages', null=True, upload_to='hospital_branding/'), ), ]