1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
4 from django.db import migrations, models
7 class Migration(migrations.Migration):
10 ('getpaid', '0001_initial'),
14 migrations.AlterField(
17 field=models.CharField(max_length=128, null=True, verbose_name='description', blank=True),
19 migrations.AlterField(
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')]),