28 lines
685 B
Python
28 lines
685 B
Python
# Generated by Django 5.2.4 on 2025-09-03 13:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("patients", "0003_insuranceinfo_is_primary"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="insuranceinfo",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[
|
|
("PENDING", "Pending"),
|
|
("APPROVED", "Approved"),
|
|
("DENIED", "Denied"),
|
|
],
|
|
default="PENDING",
|
|
help_text="Consent status",
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|