19 lines
548 B
Python
19 lines
548 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-12-30 08:09
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('symposion_speakers', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='speaker',
|
|
options={'ordering': ['name'], 'permissions': (('can_view_contact_details', 'Can View Contact Details'),), 'verbose_name': 'Speaker', 'verbose_name_plural': 'Speakers'},
|
|
),
|
|
]
|