You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
1.2 KiB

# -*- coding: utf-8 -*-
# Generated by Django 1.9.3 on 2017-10-26 22:45
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
('store', '0061_auto_20170603_0220'),
]
operations = [
migrations.CreateModel(
name='DTYSModel',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('price_start', models.IntegerField()),
('price_end', models.IntegerField()),
('price_stopped', models.IntegerField(blank=True, null=True)),
('start_date', models.DateField()),
('start_time', models.TimeField()),
('end_date', models.DateField()),
('end_time', models.TimeField()),
('is_stopped', models.BooleanField(default=False)),
('is_public', models.BooleanField(default=False)),
('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='store.ProductVariation')),
],
),
]