23 lines
471 B
Python
23 lines
471 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.5 on 2017-02-11 09:03
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('billard', '0011_auto_20170210_2122'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='accounting',
|
||
|
name='client',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='Accounting',
|
||
|
),
|
||
|
]
|