diff --git a/src/program/migrations/0025_auto_20170306_1938.py b/src/program/migrations/0025_auto_20170306_1938.py new file mode 100644 index 00000000..084787b3 --- /dev/null +++ b/src/program/migrations/0025_auto_20170306_1938.py @@ -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.'), + ), + ]