# -*- coding: utf-8 -*- # Generated by Django 1.11.13 on 2018-07-01 03:47 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('symposion_speakers', '0005_merge_20170917_1248'), ] operations = [ migrations.AlterField( model_name='speaker', name='agreement', field=models.BooleanField(default=False, help_text='I agree to the terms and conditions of attendance, and I have read, understood, and agree to act according to the standards set forth in our Code of Conduct.'), ), migrations.AlterField( model_name='speaker', name='travel_assistance', field=models.BooleanField(default=False, help_text='Check this box if you require assistance to travel to Christchurch to present your proposed sessions.', verbose_name='Travel assistance required'), ), ]