20 lines
500 B
Python
20 lines
500 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.5 on 2017-02-11 20:08
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
('billard', '0013_accounting'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='desk',
|
||
|
name='prize',
|
||
|
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=5, verbose_name='Normelpreis'),
|
||
|
),
|
||
|
]
|