add missing migrations from whatever

This commit is contained in:
Thomas Steen Rasmussen 2017-08-01 15:26:36 +02:00
parent 222da21e7f
commit 036fcf67ef

View file

@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-08-01 13:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0042_auto_20170715_1547'),
]
operations = [
migrations.AlterField(
model_name='eventproposal',
name='submission_notes',
field=models.TextField(blank=True, help_text='Private notes for this event. Only visible to the submitting user and the BornHack organisers.'),
),
migrations.AlterField(
model_name='speakerproposal',
name='submission_notes',
field=models.TextField(blank=True, help_text='Private notes for this speaker. Only visible to the submitting user and the BornHack organisers.'),
),
]