add missing migration for video stuff

This commit is contained in:
Thomas Steen Rasmussen 2017-03-06 19:39:27 +01:00
parent ca42685e2b
commit eb6c0995bf
1 changed files with 20 additions and 0 deletions

View 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.'),
),
]