bornhack-website/src/program/migrations/0054_auto_20180520_1509.py

22 lines
654 B
Python
Raw Normal View History

# Generated by Django 2.0.4 on 2018-05-20 13:09
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("program", "0053_auto_20180519_2325")]
operations = [
2019-06-16 12:32:24 +00:00
migrations.RemoveField(model_name="eventtype", name="oneday_ticket_possible"),
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="eventtype",
name="host_title",
field=models.CharField(
default="Person",
help_text='What to call someone hosting this type of event. Like "Artist" for Music or "Speaker" for talks.',
max_length=30,
),
),
]