19 lines
479 B
Python
19 lines
479 B
Python
# Generated by Django 4.1.6 on 2023-02-14 08:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('base', '0002_alter_patient_status'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='patient',
|
|
name='status',
|
|
field=models.CharField(choices=[('---', '---'), ('pending', 'Pending'), ('Processed', 'Processed')], default='---', max_length=20),
|
|
),
|
|
]
|