20 lines
518 B
Python
20 lines
518 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-03-02 16:10
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('billard', '0016_auto_20170225_1822'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='accounting',
|
|
name='prize',
|
|
field=models.DecimalField(blank=True, decimal_places=2, max_digits=6, null=True, verbose_name='Preis'),
|
|
),
|
|
]
|