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", "0008_counter_token")]
|
2016-10-03 17:30:05 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2018-10-04 19:29:19 +00:00
|
|
|
name="Eticket",
|
2016-10-03 17:30:05 +00:00
|
|
|
fields=[
|
2018-10-04 19:29:19 +00:00
|
|
|
(
|
|
|
|
"id",
|
|
|
|
models.AutoField(
|
|
|
|
verbose_name="ID",
|
|
|
|
auto_created=True,
|
|
|
|
primary_key=True,
|
|
|
|
serialize=False,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"banner",
|
|
|
|
models.ImageField(null=True, upload_to="etickets", blank=True),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"secret",
|
|
|
|
models.CharField(unique=True, verbose_name="secret", max_length=64),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"product",
|
|
|
|
models.OneToOneField(
|
|
|
|
verbose_name="product",
|
|
|
|
related_name="eticket",
|
|
|
|
to="counter.Product",
|
|
|
|
),
|
|
|
|
),
|
2016-10-03 17:30:05 +00:00
|
|
|
],
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-10-03 17:30:05 +00:00
|
|
|
]
|