Add missing non-db migration.
This commit is contained in:
parent
56875732dd
commit
d25f8eeee5
18
src/program/migrations/0064_auto_20180810_1748.py
Normal file
18
src/program/migrations/0064_auto_20180810_1748.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.1 on 2018-08-10 15:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('program', '0063_auto_20180809_1525'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='eventproposal',
|
||||
name='allow_video_recording',
|
||||
field=models.BooleanField(default=False, help_text='Uncheck to avoid video recording.'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue