add missing migration for program
This commit is contained in:
parent
e15c0bd20d
commit
12dbc05680
26
src/program/migrations/0039_auto_20170430_1408.py
Normal file
26
src/program/migrations/0039_auto_20170430_1408.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-04-30 12:08
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('program', '0038_favorite'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='speaker',
|
||||
name='events',
|
||||
field=models.ManyToManyField(blank=True, help_text='The event(s) this speaker is anchoring', related_name='speakers', to='program.Event'),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='favorite',
|
||||
unique_together=set([('user', 'event_instance')]),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue