25 lines
702 B
Python
25 lines
702 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.5 on 2017-02-25 18:22
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
('billard', '0015_auto_20170222_1023'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='location',
|
||
|
name='happy_hour_end',
|
||
|
field=models.TimeField(blank=True, null=True, verbose_name='Happy Hour Ende'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='location',
|
||
|
name='happy_hour_start',
|
||
|
field=models.TimeField(blank=True, null=True, verbose_name='Happy Hour Start'),
|
||
|
),
|
||
|
]
|