From 6de90bb28629c33f87aaa7963903c679b2e998b6 Mon Sep 17 00:00:00 2001 From: Andrey Date: Thu, 15 Mar 2018 14:00:00 +0300 Subject: [PATCH] pay --- finance/migrations/0003_auto_20180315_1358.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 finance/migrations/0003_auto_20180315_1358.py diff --git a/finance/migrations/0003_auto_20180315_1358.py b/finance/migrations/0003_auto_20180315_1358.py new file mode 100644 index 0000000..67c8bd1 --- /dev/null +++ b/finance/migrations/0003_auto_20180315_1358.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.6 on 2018-03-15 13:58 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('finance', '0002_auto_20180202_1301'), + ] + + operations = [ + migrations.AlterField( + model_name='invoice', + name='real_price', + field=models.FloatField(blank=True, editable=False, help_text='Сумма, минус комиссия', null=True, verbose_name='Полученная сумма'), + ), + ]