24 lines
716 B
Python
24 lines
716 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=[(b'apikey_login', b'API key login'), (b'gdpr_notice_email', b'GDPR consent request email sent'), (b'email_address_deactivated', b'Email address deactivated')], max_length=50),
|
|
),
|
|
]
|