add missing migration for video stuff
This commit is contained in:
parent
ca42685e2b
commit
eb6c0995bf
20
src/program/migrations/0025_auto_20170306_1938.py
Normal file
20
src/program/migrations/0025_auto_20170306_1938.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-03-06 18:38
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('program', '0024_auto_20170222_1629'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='event',
|
||||
name='video_recording',
|
||||
field=models.BooleanField(default=True, help_text='Whether the event will be video recorded or not.'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue