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

[accounts][models/migration] typo correction

parent cd18a930
No related branches found
No related tags found
1 merge request!328Improve automatic emails with temporary urls
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Generated by Django 1.11.26 on 2020-04-27 23:41 # Generated by Django 1.11.26 on 2020-05-02 03:02
from __future__ import unicode_literals from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models
...@@ -17,7 +17,7 @@ class Migration(migrations.Migration): ...@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
name='TemporaryUrl', name='TemporaryUrl',
fields=[ fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('status', models.CharField(choices=[('V', 'Supervisor validates supervisee'), ('Y', 'Self yearly revalidation from sueprvisee')], default='V', max_length=1)), ('status', models.CharField(choices=[('V', 'Supervisor validates supervisee'), ('Y', 'Self yearly revalidation from supervisee')], default='V', max_length=1)),
('url_hash', models.CharField(max_length=32, unique=True, verbose_name='Url')), ('url_hash', models.CharField(max_length=32, unique=True, verbose_name='Url')),
('expires', models.DateTimeField(verbose_name='Expires')), ('expires', models.DateTimeField(verbose_name='Expires')),
('supervision_track', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='supervisees', to='accounts.SupervisionTrack')), ('supervision_track', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='supervisees', to='accounts.SupervisionTrack')),
......
...@@ -163,7 +163,7 @@ class TemporaryUrl(models.Model): ...@@ -163,7 +163,7 @@ class TemporaryUrl(models.Model):
URL_STATUS = ( URL_STATUS = (
(VALIDATION, "Supervisor validates supervisee"), (VALIDATION, "Supervisor validates supervisee"),
(YEARREVALIDATION, "Self yearly revalidation from sueprvisee"), (YEARREVALIDATION, "Self yearly revalidation from supervisee"),
) )
# _____ Fields __________ # _____ Fields __________
......
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