bornhack-website/src/program/migrations/0042_auto_20170715_1547.py
Stephan Telling b60d8fb9a8 fix #135
2017-07-15 15:57:31 +02:00

26 lines
844 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-07-15 13:47
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0041_auto_20170711_2248'),
]
operations = [
migrations.AddField(
model_name='eventproposal',
name='submission_notes',
field=models.TextField(blank=True, help_text='Private notes for the event. Only visible to the submitting user and the BornHack organisers.'),
),
migrations.AddField(
model_name='speakerproposal',
name='submission_notes',
field=models.TextField(blank=True, help_text='Private notes for the event. Only visible to the submitting user and the BornHack organisers.'),
),
]