21 lines
509 B
Python
21 lines
509 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-02-22 10:23
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('billard', '0014_auto_20170211_2008'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='desk',
|
|
name='prize',
|
|
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=5, verbose_name='Normalpreis'),
|
|
),
|
|
]
|