20 lines
569 B
Python
20 lines
569 B
Python
# Generated by Django 6.0.1 on 2026-07-07 07:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('organizations', '0016_patient_verbose_names'),
|
|
('projects', '0004_qi_multi_department'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='qiproject',
|
|
name='departments',
|
|
field=models.ManyToManyField(blank=True, help_text='Departments involved in this QI project.', related_name='qi_projects', to='organizations.department'),
|
|
),
|
|
]
|