add missing migration
This commit is contained in:
parent
533c1b3efa
commit
534a2d790d
25
src/program/migrations/0041_auto_20170711_2248.py
Normal file
25
src/program/migrations/0041_auto_20170711_2248.py
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.5 on 2017-07-11 20:48
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('program', '0040_eventproposal_allow_video_recording'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='eventproposal',
|
||||||
|
name='proposal_status',
|
||||||
|
field=models.CharField(choices=[('draft', 'Draft'), ('pending', 'Pending approval'), ('approved', 'Approved'), ('rejected', 'Rejected'), ('modified after approval', 'Modified after approval')], default='draft', max_length=50),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='speakerproposal',
|
||||||
|
name='proposal_status',
|
||||||
|
field=models.CharField(choices=[('draft', 'Draft'), ('pending', 'Pending approval'), ('approved', 'Approved'), ('rejected', 'Rejected'), ('modified after approval', 'Modified after approval')], default='draft', max_length=50),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue