X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6280673f35e13e75e81c5b7821bd2a44a1831eab..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/src/wolnelektury/migrations/getpaid/0002_auto_20151221_1225.py diff --git a/src/wolnelektury/migrations/getpaid/0002_auto_20151221_1225.py b/src/wolnelektury/migrations/getpaid/0002_auto_20151221_1225.py new file mode 100644 index 000000000..c1a71771f --- /dev/null +++ b/src/wolnelektury/migrations/getpaid/0002_auto_20151221_1225.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('getpaid', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='payment', + name='description', + field=models.CharField(max_length=128, null=True, verbose_name='description', blank=True), + ), + migrations.AlterField( + model_name='payment', + name='status', + field=models.CharField(default=b'new', max_length=20, verbose_name='status', db_index=True, choices=[(b'new', 'new'), (b'in_progress', 'in progress'), (b'accepted_for_proc', 'accepted for processing'), (b'partially_paid', 'partially paid'), (b'paid', 'paid'), (b'cancelled', 'cancelled'), (b'failed', 'failed')]), + ), + ]