Update database
This commit is contained in:
parent
54004003e4
commit
b760e0037f
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 3.0.6 on 2020-05-18 09:02
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('employee', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='employee',
|
||||||
|
options={'verbose_name': 'employee', 'verbose_name_plural': 'employees'},
|
||||||
|
),
|
||||||
|
]
|
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 3.0.6 on 2020-05-18 09:02
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('hospital', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='hospital',
|
||||||
|
options={'verbose_name': 'hospital', 'verbose_name_plural': 'hospitals'},
|
||||||
|
),
|
||||||
|
]
|
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 3.0.6 on 2020-05-18 09:02
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('polyclinic', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='polyclinic',
|
||||||
|
options={'verbose_name': 'polyclinic', 'verbose_name_plural': 'polyclinics'},
|
||||||
|
),
|
||||||
|
]
|
@ -0,0 +1,22 @@
|
|||||||
|
# Generated by Django 3.0.6 on 2020-05-18 09:02
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('schedule', '0002_auto_20200514_1318'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='schedule',
|
||||||
|
options={'verbose_name': 'schedule', 'verbose_name_plural': 'schedules'},
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='schedule',
|
||||||
|
name='peregrine_output_log',
|
||||||
|
field=models.TextField(blank=True, help_text='Here you can see the logging of the Peregrine job.', verbose_name='Peregrine logging'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user