Files @ 72b5c3ff556d
Branch filter:

Location: symposion_app/vendor/symposion/schedule/migrations/0003_auto_20161113_1530.py

Joel Addison
Add code to speaker

Add unique identifier (code) to speakers within schedule JSON API
to allow speakers to be identified throughout the schedule.
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-11-13 04:30
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('symposion_schedule', '0002_presentation_unpublish'),
    ]

    operations = [
        migrations.AlterField(
            model_name='slot',
            name='name',
            field=models.CharField(editable=False, max_length=150),
        ),
    ]