datatracker/ietf/person/migrations/0028_name_character_validator.py
Robert Sparks 9b4903e2e6
fix: Fix incorrect "GDPR" features/terminology. Fixes #4521. (#4587)
* fix: remove help/personal-information and the prompt-for-consent email management command.

* fix: remove gdpr treatment except for consent checkbox. Rename Submit.

* fix: drom the consent column from Person and Person.History

* fix: remove the consent boolean. Reorganize the account info form.

* chore: reorder migrations
2022-10-18 13:27:19 -05:00

25 lines
885 B
Python

# Copyright The IETF Trust 2022, All Rights Reserved
from django.db import migrations, models
import ietf.person.models
class Migration(migrations.Migration):
dependencies = [
('person', '0027_personevent_drop_consent'),
]
operations = [
migrations.AlterField(
model_name='historicalperson',
name='name',
field=models.CharField(db_index=True, help_text='Preferred long form of name.', max_length=255, validators=[ietf.person.models.name_character_validator], verbose_name='Full Name (Unicode)'),
),
migrations.AlterField(
model_name='person',
name='name',
field=models.CharField(db_index=True, help_text='Preferred long form of name.', max_length=255, validators=[ietf.person.models.name_character_validator], verbose_name='Full Name (Unicode)'),
),
]