bornhack-website/src/camps/migrations/0004_camp_ticket_sale_open.py

23 lines
549 B
Python
Raw Normal View History

2016-05-06 20:33:59 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-05-06 20:16
2017-01-30 11:16:07 +00:00
2016-05-06 20:33:59 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("camps", "0003_auto_20160422_2019")]
2016-05-06 20:33:59 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="camp",
name="ticket_sale_open",
field=models.BooleanField(
default=False,
help_text="Whether tickets are for sale or not.",
verbose_name="Ticket sale open?",
),
)
2016-05-06 20:33:59 +00:00
]