Migrations
This commit is contained in:
parent
e761864c3e
commit
5d9b7a71d7
|
@ -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'),
|
||||
),
|
||||
]
|
|
@ -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'),
|
||||
),
|
||||
]
|
|
@ -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'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue