19 lines
458 B
Python
19 lines
458 B
Python
# Generated by Django 5.2.4 on 2025-09-03 12:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("patients", "0002_emergencycontact_authorization_number_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="insuranceinfo",
|
|
name="is_primary",
|
|
field=models.BooleanField(default=False, help_text="Primary insurance"),
|
|
),
|
|
]
|