Migrations

This commit is contained in:
Joshua Rubingh 2020-05-18 14:28:05 +02:00
parent e761864c3e
commit 5d9b7a71d7
4 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.6 on 2020-05-18 12:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('employee', '0002_auto_20200518_0902'),
]
operations = [
migrations.AlterField(
model_name='employee',
name='phone',
field=models.CharField(blank=True, help_text='The direct phone number of this employee', max_length=20, verbose_name='Phone number'),
),
]

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.6 on 2020-05-18 12:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('hospital', '0002_auto_20200518_0902'),
]
operations = [
migrations.AlterField(
model_name='hospital',
name='phone',
field=models.CharField(blank=True, help_text='The general phone number of this hospital', max_length=20, verbose_name='Phone number'),
),
]

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.6 on 2020-05-18 12:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('polyclinic', '0002_auto_20200518_0902'),
]
operations = [
migrations.AlterField(
model_name='polyclinic',
name='phone',
field=models.CharField(blank=True, help_text='The general/direct phone number of this polyclinic', max_length=20, verbose_name='Phone number'),
),
]

View File