24 lines
710 B
Python
24 lines
710 B
Python
# Copyright The IETF Trust 2018-2019, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.15 on 2018-09-29 13:03
|
|
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('person', '0006_auto_20180910_0719'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='personevent',
|
|
name='type',
|
|
field=models.CharField(choices=[('apikey_login', 'API key login'), ('gdpr_notice_email', 'GDPR consent request email sent'), ('email_address_deactivated', 'Email address deactivated')], max_length=50),
|
|
),
|
|
]
|