From 13fd2335eb8b8b93e5330fe9bcc125557bffb198 Mon Sep 17 00:00:00 2001 From: Simon Chen Date: Wed, 9 Nov 2016 09:57:41 -0500 Subject: [PATCH] Add missing migration for verbose_name alter --- .../migrations/0012_auto_20161109_1456.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ecommerce/extensions/payment/migrations/0012_auto_20161109_1456.py diff --git a/ecommerce/extensions/payment/migrations/0012_auto_20161109_1456.py b/ecommerce/extensions/payment/migrations/0012_auto_20161109_1456.py new file mode 100644 index 00000000000..2a84ba8e454 --- /dev/null +++ b/ecommerce/extensions/payment/migrations/0012_auto_20161109_1456.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('payment', '0011_paypalprocessorconfiguration'), + ] + + operations = [ + migrations.AlterField( + model_name='paypalprocessorconfiguration', + name='retry_attempts', + field=models.PositiveSmallIntegerField(default=0, verbose_name='Number of times to retry failing Paypal client actions (e.g., payment creation, payment execution)'), + ), + ]