0006_auto_20170424_1734.py 547 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('commerce', '0005_commerceconfiguration_enable_automatic_refund_approval'),
    ]

    operations = [
        migrations.AlterField(
            model_name='commerceconfiguration',
            name='receipt_page',
            field=models.CharField(default=b'/checkout/receipt/?order_number=', help_text='Path to order receipt page.', max_length=255),
        ),
    ]