bornhack-website/src/program/migrations/0070_auto_20180819_1729.py

27 lines
743 B
Python
Raw Normal View History

2018-08-19 15:31:46 +00:00
# Generated by Django 2.1 on 2018-08-19 15:29
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0069_add_bogus_email_to_old_speakers")]
2018-08-19 15:31:46 +00:00
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="speaker",
name="email",
field=models.EmailField(
help_text="The email of the speaker.", max_length=150
),
2018-08-19 15:31:46 +00:00
),
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="speakerproposal",
name="email",
field=models.EmailField(
help_text="The email of the speaker (defaults to the logged in user if empty.",
max_length=150,
),
2018-08-19 15:31:46 +00:00
),
]