blob: 743dc76d36078b8a48e27047d2cb0809ce3106ba (
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
25
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-02-22 14:58
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('confreg', '0066_attendeemail_addopts'),
]
operations = [
migrations.AddField(
model_name='conference',
name='notifysessionstatus',
field=models.BooleanField(default=False, verbose_name='Notify about session status changes by speakers'),
),
migrations.AddField(
model_name='conference',
name='notifyvolunteerstatus',
field=models.BooleanField(default=False, verbose_name='Notify about volunteer schedule changes'),
),
]
|