datatracker/ietf/person/migrations/0026_drop_consent.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

22 lines
450 B
Python

# Copyright The IETF Trust 2022, All Rights Reserved
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('person', '0025_chat_and_polls_apikey'),
]
operations = [
migrations.RemoveField(
model_name='historicalperson',
name='consent',
),
migrations.RemoveField(
model_name='person',
name='consent',
),
]