Sith/counter/migrations/0010_auto_20161003_1900.py

25 lines
652 B
Python
Raw Normal View History

2016-10-03 17:30:05 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2018-10-04 19:29:19 +00:00
dependencies = [("counter", "0009_eticket")]
2016-10-03 17:30:05 +00:00
operations = [
migrations.AddField(
2018-10-04 19:29:19 +00:00
model_name="eticket",
name="event_date",
field=models.DateField(blank=True, verbose_name="event date", null=True),
2016-10-03 17:30:05 +00:00
),
migrations.AddField(
2018-10-04 19:29:19 +00:00
model_name="eticket",
name="event_title",
field=models.CharField(
blank=True, max_length=64, verbose_name="event title", null=True
),
2016-10-03 17:30:05 +00:00
),
]