From 036fcf67ef013c4b6eb3bcb7f997deb3dba88991 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Tue, 1 Aug 2017 15:26:36 +0200 Subject: [PATCH] add missing migrations from whatever --- .../migrations/0043_auto_20170801_1526.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/program/migrations/0043_auto_20170801_1526.py 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.'), + ), + ]