bornhack-website/src/events/migrations/0004_auto_20180403_1228.py

30 lines
848 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2018-04-03 10:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("events", "0003_create_another_eventtype")]
operations = [
migrations.AddField(
model_name="type",
name="email_notification",
field=models.BooleanField(
default=False,
help_text="Check to send email notifications for this type of event.",
),
),
migrations.AddField(
model_name="type",
name="irc_notification",
field=models.BooleanField(
default=False,
help_text="Check to send IRC notifications for this type of event.",
),
),
]