carom-server/billard/migrations/0018_auto_20170302_2058.py

37 lines
1.3 KiB
Python
Raw Permalink Normal View History

2017-03-02 20:59:10 +01:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-02 20:58
from __future__ import unicode_literals
2018-02-11 10:56:44 +01:00
import django.db.models.deletion
2017-03-02 20:59:10 +01:00
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('billard', '0017_accounting_reporter_uuid'),
]
operations = [
migrations.AddField(
model_name='accounting',
name='prize_hh',
2018-02-11 10:56:44 +01:00
field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True,
verbose_name='Preis Happy Hour'),
2017-03-02 20:59:10 +01:00
),
migrations.AddField(
model_name='accounting',
name='prize_normal',
2018-02-11 10:56:44 +01:00
field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True,
verbose_name='Preis Normalzeit'),
2017-03-02 20:59:10 +01:00
),
migrations.AddField(
model_name='client',
name='report_user',
2018-02-11 10:56:44 +01:00
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE,
related_name='reporting_clients', to=settings.AUTH_USER_MODEL,
verbose_name='Reporting Benutzer'),
2017-03-02 20:59:10 +01:00
),
]