21 lines
623 B
Python
21 lines
623 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.15 on 2018-09-29 13:03
|
|
from __future__ import 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),
|
|
),
|
|
]
|