bornhack-website/src/program/migrations/0052_auto_20180519_2324.py

20 lines
537 B
Python
Raw Normal View History

# Generated by Django 2.0.4 on 2018-05-19 21:24
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0051_auto_20180512_1801")]
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="eventproposal",
name="allow_video_recording",
field=models.BooleanField(
default=False,
help_text="Check if we can video record the event. Leave unchecked to avoid video recording.",
),
)
]