22 lines
627 B
Python
22 lines
627 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-04-27 08:35
|
|
from __future__ import unicode_literals
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('billard', '0021_accounting_account_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='client',
|
|
name='location',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='clients',
|
|
to='billard.Location', verbose_name='Standort'),
|
|
),
|
|
]
|