hospital-management/patients/migrations/0007_alter_consenttemplate_category.py
Marwan Alwali 610e165e17 update
2025-09-04 19:19:52 +03:00

34 lines
1.1 KiB
Python

# Generated by Django 5.2.4 on 2025-09-04 15:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("patients", "0006_insuranceclaim_claimstatushistory_claimdocument_and_more"),
]
operations = [
migrations.AlterField(
model_name="consenttemplate",
name="category",
field=models.CharField(
choices=[
("TREATMENT", "Treatment Consent"),
("PROCEDURE", "Procedure Consent"),
("SURGERY", "Surgical Consent"),
("ANESTHESIA", "Anesthesia Consent"),
("RESEARCH", "Research Consent"),
("PRIVACY", "Privacy Consent"),
("FINANCIAL", "Financial Consent"),
("ADMISSION", "Admission Consent"),
("DISCHARGE", "Discharge Consent"),
("OTHER", "Other"),
],
help_text="Consent category",
max_length=50,
),
),
]