34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# Generated by Django 6.0.1 on 2026-07-19 08:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('observations', '0022_observation_add_national_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='observation',
|
|
name='patient_email',
|
|
field=models.EmailField(blank=True, help_text='Email of the patient', max_length=254),
|
|
),
|
|
migrations.AddField(
|
|
model_name='observation',
|
|
name='patient_name',
|
|
field=models.CharField(blank=True, help_text='Name of the patient involved', max_length=200),
|
|
),
|
|
migrations.AddField(
|
|
model_name='observation',
|
|
name='patient_national_id',
|
|
field=models.CharField(blank=True, help_text='National ID/Iqama of the patient', max_length=20),
|
|
),
|
|
migrations.AddField(
|
|
model_name='observation',
|
|
name='patient_phone',
|
|
field=models.CharField(blank=True, help_text='Phone number of the patient', max_length=20),
|
|
),
|
|
]
|