From 34c08803c1fea6462b54d3ba7e41cf89e905998e Mon Sep 17 00:00:00 2001
From: hamztouiz <71287875+hamztouiz@users.noreply.github.com>
Date: Mon, 21 Mar 2022 20:02:29 +0100
Subject: [PATCH] Test (#53)

Co-authored-by: Hamzux <hamza.touizrat@studebt-cs.fr>
---
 profiles/migrations/0016_auto_20220321_0135.py | 18 ++++++++++++++++++
 .../migrations/0017_merge_20220321_0137.py     | 14 ++++++++++++++
 2 files changed, 32 insertions(+)
 create mode 100644 profiles/migrations/0016_auto_20220321_0135.py
 create mode 100644 profiles/migrations/0017_merge_20220321_0137.py

diff --git a/profiles/migrations/0016_auto_20220321_0135.py b/profiles/migrations/0016_auto_20220321_0135.py
new file mode 100644
index 0000000..6079f80
--- /dev/null
+++ b/profiles/migrations/0016_auto_20220321_0135.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2 on 2022-03-21 00:35
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('profiles', '0015_student_updated_date'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='tutor',
+            name='promotion',
+            field=models.IntegerField(choices=[(2024, '2024'), (2023, '2023'), (2022, '2022'), (2021, '2021'), (2020, '2020')], default=2024),
+        ),
+    ]
diff --git a/profiles/migrations/0017_merge_20220321_0137.py b/profiles/migrations/0017_merge_20220321_0137.py
new file mode 100644
index 0000000..ad310f5
--- /dev/null
+++ b/profiles/migrations/0017_merge_20220321_0137.py
@@ -0,0 +1,14 @@
+# Generated by Django 2.2 on 2022-03-21 00:37
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('profiles', '0016_auto_20220321_0135'),
+        ('profiles', '0016_auto_20211225_1242'),
+    ]
+
+    operations = [
+    ]
-- 
GitLab