diff --git a/smash/web/migrations/0119_auto_20181002_0908.py b/smash/web/migrations/0119_auto_20181002_0908.py new file mode 100644 index 0000000000000000000000000000000000000000..3f3a9a06ccbba72db9a92a1f4a682fbcf19318c0 --- /dev/null +++ b/smash/web/migrations/0119_auto_20181002_0908.py @@ -0,0 +1,20 @@ +# -*- 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'), + ), + ] diff --git a/smash/web/migrations/0120_holiday_kind.py b/smash/web/migrations/0120_holiday_kind.py new file mode 100644 index 0000000000000000000000000000000000000000..688d8f04cbc5fc25594949c5d8d436c4bf58cc86 --- /dev/null +++ b/smash/web/migrations/0120_holiday_kind.py @@ -0,0 +1,20 @@ +# -*- 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), + ), + ] diff --git a/smash/web/migrations/0121_auto_20181003_1256.py b/smash/web/migrations/0121_auto_20181003_1256.py new file mode 100644 index 0000000000000000000000000000000000000000..a350af1604c22d5f97a0f6290a56ce2920c33155 --- /dev/null +++ b/smash/web/migrations/0121_auto_20181003_1256.py @@ -0,0 +1,20 @@ +# -*- 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), + ), + ]