* 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
22 lines
450 B
Python
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',
|
|
),
|
|
]
|