Skip to content
Snippets Groups Projects
Commit 24fcf0ee authored by Flavio TARSETTI's avatar Flavio TARSETTI
Browse files

[accounts][migrations] altered status to include REJECTION

Fixes #550
parent 02fdc57c
No related branches found
No related tags found
1 merge request!328Improve automatic emails with temporary urls
Pipeline #39853 passed
# -*- 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),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment