bornhack-website/src/program/migrations/0083_auto_20200226_1853.py
Thomas Steen Rasmussen bf7578a833
Send emails when proposals are accepted/rejected, and when eventinstances are created/updated (#466)
* fixup labels and help_text for the email field

* add email and published columns to speaker proposal table, add published column to event proposal table

* send email to user when a speaker or eventproposal is accepted or rejected. Send email to submitter and all speakers when an eventinstance is created, or when the time is updated (event is rescheduled). Fix a few other small things while here.
2020-03-05 12:23:42 +01:00

30 lines
776 B
Python

# Generated by Django 3.0.3 on 2020-02-26 17:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0082_eventinstance_uuid_not_null"),
]
operations = [
migrations.AddField(
model_name="eventproposal",
name="reason",
field=models.TextField(
blank=True,
help_text="The reason this proposal was accepted or rejected.",
),
),
migrations.AddField(
model_name="speakerproposal",
name="reason",
field=models.TextField(
blank=True,
help_text="The reason this proposal was accepted or rejected.",
),
),
]