Initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 3.0.5 on 2020-05-20 04:53
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('hospital', '0006_appointment_status'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='appointment',
|
||||
name='doctorName',
|
||||
field=models.CharField(max_length=40, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='appointment',
|
||||
name='patientName',
|
||||
field=models.CharField(max_length=40, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='patient',
|
||||
name='mobile',
|
||||
field=models.CharField(max_length=40),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='patient',
|
||||
name='symptoms',
|
||||
field=models.CharField(max_length=100),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user