Add a migration for changes to speaker form
This commit is contained in:
parent
d32a609def
commit
567b88f240
1 changed files with 25 additions and 0 deletions
25
vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py
vendored
Normal file
25
vendor/symposion/speakers/migrations/0006_auto_20180701_1347.py
vendored
Normal file
|
@ -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 <a href="/attend/terms-and-conditions"> terms and conditions of attendance</a>, and I have read, understood, and agree to act according to the standards set forth in our <a href="/attend/code-of-conduct">Code of Conduct</a>.'),
|
||||
),
|
||||
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'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue