carom-server/billard/migrations/0021_accounting_account_user.py

21 lines
511 B
Python
Raw Normal View History

2017-04-26 10:06:25 +02:00
# -*- coding: utf-8 -*-
2017-04-26 10:17:19 +02:00
# Generated by Django 1.11 on 2017-04-26 10:17
2017-04-26 10:06:25 +02:00
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('billard', '0020_auto_20170410_1853'),
]
operations = [
migrations.AddField(
model_name='accounting',
name='account_user',
2017-04-26 10:17:19 +02:00
field=models.CharField(blank=True, max_length=128, null=True, verbose_name='Abr. Benutzer'),
2017-04-26 10:06:25 +02:00
),
]