22 lines
592 B
Python
22 lines
592 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11 on 2017-04-27 08:35
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
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'),
|
||
|
),
|
||
|
]
|