26 lines
890 B
Python
26 lines
890 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.15 on 2018-10-23 08:14
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('proposals', '0012_auto_20181018_1830'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='openedproposal',
|
|
name='talk_format',
|
|
field=models.IntegerField(choices=[(1, 'Presentation (40-45 min)'), (2, 'Short Presentation (20-30 min)'), (3, 'Lightning Talk (5-10 min)')], default=1, help_text='Please indicate your preferred talk length in the private abstract field below.'),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AlterField(
|
|
model_name='openedproposal',
|
|
name='target_audience',
|
|
field=models.IntegerField(blank=True, null=True),
|
|
),
|
|
]
|