From 24fcf0eee7e7a628406a06a851f0759577178422 Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti <flavio.tarsetti@idiap.ch> Date: Wed, 13 May 2020 23:09:22 +0200 Subject: [PATCH] [accounts][migrations] altered status to include REJECTION Fixes #550 --- ...0013_supervisee_rejection_temporary_url.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 beat/web/accounts/migrations/0013_supervisee_rejection_temporary_url.py 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 000000000..459b9ca9c --- /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), + ), + ] -- GitLab