bornhack-website/src/program/migrations/0042_auto_20170715_1547.py

30 lines
923 B
Python
Raw Normal View History

2017-07-15 13:56:32 +00:00
# -*- 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):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0041_auto_20170711_2248")]
2017-07-15 13:56:32 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
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.",
),
2017-07-15 13:56:32 +00:00
),
migrations.AddField(
2019-06-16 12:32:24 +00:00
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.",
),
2017-07-15 13:56:32 +00:00
),
]