minor admin
[wolnelektury.git] / src / wolnelektury / migrations / getpaid / 0002_auto_20151221_1225.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('getpaid', '0001_initial'),
11     ]
12
13     operations = [
14         migrations.AlterField(
15             model_name='payment',
16             name='description',
17             field=models.CharField(max_length=128, null=True, verbose_name='description', blank=True),
18         ),
19         migrations.AlterField(
20             model_name='payment',
21             name='status',
22             field=models.CharField(default='new', max_length=20, verbose_name='status', db_index=True, choices=[('new', 'new'), ('in_progress', 'in progress'), ('accepted_for_proc', 'accepted for processing'), ('partially_paid', 'partially paid'), ('paid', 'paid'), ('cancelled', 'cancelled'), ('failed', 'failed')]),
23         ),
24     ]