bornhack-website/src/program/migrations/0064_auto_20180810_1748.py

19 lines
470 B
Python
Raw Normal View History

2018-08-10 16:04:33 +00:00
# Generated by Django 2.1 on 2018-08-10 15:48
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0063_auto_20180809_1525")]
2018-08-10 16:04:33 +00:00
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="Uncheck to avoid video recording."
),
)
2018-08-10 16:04:33 +00:00
]