summaryrefslogtreecommitdiff
path: root/postgresqleu/confreg/migrations/0024_photoconsent.py
blob: 1e42857267dd5348b091f1a92acf89378688bdff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('confreg', '0023_accesstokens'),
    ]

    operations = [
        migrations.AddField(
            model_name='conference',
            name='askphotoconsent',
            field=models.BooleanField(default=True, help_text='Include field for getting photo consent', verbose_name='Field: photo consent'),
        ),
        migrations.AddField(
            model_name='conferenceregistration',
            name='photoconsent',
            field=models.BooleanField(null=True, verbose_name='Consent to having your photo taken at the event by the organisers'),
        ),
    ]