bornhack-website/src/program/migrations/0072_auto_20190616_1746.py

22 lines
524 B
Python
Raw Normal View History

2019-06-24 13:45:56 +00:00
# Generated by Django 2.2.2 on 2019-06-16 15:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2020-02-07 17:46:34 +00:00
("program", "0071_auto_20180827_1958"),
2019-06-24 13:45:56 +00:00
]
operations = [
migrations.AlterField(
2020-02-07 17:46:34 +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,
),
2019-06-24 13:45:56 +00:00
),
]