poli_planning/polyclinic_scheduling/apps/employee/migrations/0004_auto_20200519_1351.py

27 lines
928 B
Python

# Generated by Django 3.0.6 on 2020-05-19 13:51
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('hospital', '0003_auto_20200518_1227'),
('polyclinic', '0003_auto_20200518_1227'),
('employee', '0003_auto_20200518_1227'),
]
operations = [
migrations.AlterField(
model_name='employee',
name='hospital',
field=models.ForeignKey(help_text='Select the hospital for this employee', on_delete=django.db.models.deletion.CASCADE, to='hospital.Hospital', verbose_name='hospital'),
),
migrations.AlterField(
model_name='employee',
name='polyclinic',
field=models.ManyToManyField(blank=True, help_text='Select the polyclinic(s) for this employee', to='polyclinic.Polyclinic', verbose_name='polyclinic'),
),
]