From 567b88f24032b9c39a354666a0e825a2fa3f8916 Mon Sep 17 00:00:00 2001 From: James Polley Date: Sun, 1 Jul 2018 13:52:25 +1000 Subject: [PATCH] Add a migration for changes to speaker form --- .../migrations/0006_auto_20180701_1347.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py diff --git a/vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py b/vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py new file mode 100644 index 00000000..447f7f59 --- /dev/null +++ b/vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py @@ -0,0 +1,25 @@ +# -*- 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'), + ), + ]