From 96fcdb3a57849b3dc9a6600e21e2e43c62cd663f Mon Sep 17 00:00:00 2001
From: Carlos Vega <carlos.vega@uni.lu>
Date: Wed, 3 Oct 2018 14:57:55 +0200
Subject: [PATCH] new migrations for model changes

---
 .../web/migrations/0119_auto_20181002_0908.py | 20 +++++++++++++++++++
 smash/web/migrations/0120_holiday_kind.py     | 20 +++++++++++++++++++
 .../web/migrations/0121_auto_20181003_1256.py | 20 +++++++++++++++++++
 3 files changed, 60 insertions(+)
 create mode 100644 smash/web/migrations/0119_auto_20181002_0908.py
 create mode 100644 smash/web/migrations/0120_holiday_kind.py
 create mode 100644 smash/web/migrations/0121_auto_20181003_1256.py

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 00000000..3f3a9a06
--- /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 00000000..688d8f04
--- /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 00000000..a350af16
--- /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),
+        ),
+    ]
-- 
GitLab