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