Skip to content
Snippets Groups Projects
Commit 96fcdb3a authored by Carlos Vega's avatar Carlos Vega
Browse files

new migrations for model changes

parent 0352c773
No related branches found
No related tags found
1 merge request!171Feature/daily availability
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-02 09:08
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0118_voucher_activity_type'),
]
operations = [
migrations.AlterField(
model_name='workerstudyrole',
name='role',
field=models.CharField(choices=[(b'DOCTOR', b'Doctor'), (b'NURSE', b'Nurse'), (b'PSYCHOLOGIST', b'Psychologist'), (b'TECHNICIAN', b'Technician'), (b'SECRETARY', b'Secretary'), (b'PROJECT MANAGER', b'Project Manager')], max_length=20, verbose_name=b'Role'),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-03 09:11
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0119_auto_20181002_0908'),
]
operations = [
migrations.AddField(
model_name='holiday',
name='kind',
field=models.CharField(choices=[(b'H', b'Holiday'), (b'X', b'Extra Availability')], default=b'H', max_length=1),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-03 12:56
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0120_holiday_kind'),
]
operations = [
migrations.AlterField(
model_name='holiday',
name='kind',
field=models.CharField(choices=[(b'H', b'Holiday'), (b'X', b'Extra Availability')], default=b'H', help_text=b'Defines the kind of availability. Either Holiday or Extra Availability.', max_length=1),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment