You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
772 B
25 lines
772 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-04-14 19:30
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0005_selfbilldesign'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='selfbillrequest',
|
|
name='company',
|
|
),
|
|
migrations.AddField(
|
|
model_name='selfbillrequest',
|
|
name='design',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='finance.SelfBillDesign', verbose_name='\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435'),
|
|
),
|
|
]
|
|
|