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.
 
 
 
 
 
 

26 lines
915 B

# -*- coding: utf-8 -*-
# Generated by Django 1.9.3 on 2016-11-08 15:59
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('service', '0011_auto_20160908_1624'),
('finance', '0043_remove_bill_inside_description'),
]
operations = [
migrations.AddField(
model_name='bill',
name='create_letter',
field=models.ManyToManyField(blank=True, null=True, related_name='bill_create_letter', to='service.MailBox', verbose_name='Письма при создании'),
),
migrations.AddField(
model_name='bill',
name='finish_letters',
field=models.ManyToManyField(blank=True, null=True, related_name='bill_finish_letter', to='service.MailBox', verbose_name='Письма завершения'),
),
]