20 lines
544 B
Python
20 lines
544 B
Python
# Generated by Django 5.0.14 on 2026-01-07 08:54
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('organizations', '0004_remove_patient_department'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='staff',
|
|
name='department',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='staff', to='organizations.department'),
|
|
),
|
|
]
|