add missing migrations from whatever
This commit is contained in:
parent
222da21e7f
commit
036fcf67ef
25
src/program/migrations/0043_auto_20170801_1526.py
Normal file
25
src/program/migrations/0043_auto_20170801_1526.py
Normal 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.'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue