From 87291cb4e013e76492adf7e2652aec7ee7d955e8 Mon Sep 17 00:00:00 2001 From: Ivlev Denis Date: Fri, 2 Mar 2018 10:41:03 +0300 Subject: [PATCH] Add AuthorBalance migration --- .../migrations/0012_auto_20180302_0740.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/payment/migrations/0012_auto_20180302_0740.py diff --git a/apps/payment/migrations/0012_auto_20180302_0740.py b/apps/payment/migrations/0012_auto_20180302_0740.py new file mode 100644 index 00000000..bc5a3414 --- /dev/null +++ b/apps/payment/migrations/0012_auto_20180302_0740.py @@ -0,0 +1,18 @@ +# Generated by Django 2.0.2 on 2018-03-02 07:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('payment', '0011_authorbalance_cause'), + ] + + operations = [ + migrations.AlterField( + model_name='authorbalance', + name='cause', + field=models.TextField(blank=True, null=True, verbose_name='Причина отказа'), + ), + ]