Commit 9104d7f0 by Simon Chen Committed by GitHub

Merge pull request #1007 from edx/schen/ECOM-5891

Add missing migration for verbose_name alter
parents ed74dd2b 13fd2335
# -*- 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)'),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment