diff --git a/beat/web/accounts/migrations/0013_supervisee_rejection_temporary_url.py b/beat/web/accounts/migrations/0013_supervisee_rejection_temporary_url.py
new file mode 100644
index 0000000000000000000000000000000000000000..459b9ca9cecdc022f743c59302a3cf9408fc0d4d
--- /dev/null
+++ b/beat/web/accounts/migrations/0013_supervisee_rejection_temporary_url.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.26 on 2020-05-13 18:48
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('accounts', '0012_accounts_temporary_url'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='temporaryurl',
+            name='status',
+            field=models.CharField(choices=[('V', 'Supervisor validates supervisee'), ('Y', 'Self yearly revalidation from supervisee'), ('R', 'Supervisor rejects supervisee revalidation')], default='V', max_length=1),
+        ),
+    ]