# Generated by Django 2.1 on 2018-08-19 15:29 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [("program", "0069_add_bogus_email_to_old_speakers")] operations = [ migrations.AlterField( model_name="speaker", name="email", field=models.EmailField( help_text="The email of the speaker.", max_length=150 ), ), migrations.AlterField( 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, ), ), ]