Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1007 from edx/schen/ECOM-5891
Browse files Browse the repository at this point in the history
Add missing migration for verbose_name alter
  • Loading branch information
schenedx authored Nov 9, 2016
2 parents ed74dd2 + 13fd233 commit 9104d7f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ecommerce/extensions/payment/migrations/0012_auto_20161109_1456.py
Original file line number Diff line number Diff line change
@@ -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)'),
),
]

0 comments on commit 9104d7f

Please sign in to comment.