reformat code
This commit is contained in:
@@ -2,13 +2,12 @@
|
||||
# Generated by Django 1.10.5 on 2017-03-02 20:58
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('billard', '0017_accounting_reporter_uuid'),
|
||||
@@ -18,16 +17,20 @@ class Migration(migrations.Migration):
|
||||
migrations.AddField(
|
||||
model_name='accounting',
|
||||
name='prize_hh',
|
||||
field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True, verbose_name='Preis Happy Hour'),
|
||||
field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True,
|
||||
verbose_name='Preis Happy Hour'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='accounting',
|
||||
name='prize_normal',
|
||||
field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True, verbose_name='Preis Normalzeit'),
|
||||
field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True,
|
||||
verbose_name='Preis Normalzeit'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='client',
|
||||
name='report_user',
|
||||
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'),
|
||||
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'),
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user