update requirements

This commit is contained in:
2017-04-26 10:06:25 +02:00
parent c7efbffc8f
commit 52d515b05e
3 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-04-26 09:57
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('billard', '0020_auto_20170410_1853'),
]
operations = [
migrations.AddField(
model_name='accounting',
name='account_user',
field=models.ManyToManyField(related_name='accountings', to=settings.AUTH_USER_MODEL, verbose_name='Abr. Benutzer'),
),
]