# -*- coding: utf-8 -*- # Generated by Django 1.9.3 on 2016-12-22 11:22 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('finance', '0053_remove_bill_test'), ] operations = [ migrations.AddField( model_name='bill', name='real_price', field=models.CharField(blank=True, help_text='Сумма, минус комиссия', max_length=255, null=True, verbose_name='Полученная сумма'), ), ]