|
- # -*- coding: utf-8 -*-
- # Generated by Django 1.9 on 2015-12-09 04:40
- from __future__ import unicode_literals
-
- from django.db import migrations, models
-
-
- class Migration(migrations.Migration):
-
- dependencies = [
- ('payments', '0002_auto_20151204_0341'),
- ]
-
- operations = [
- migrations.AlterField(
- model_name='payment',
- name='status',
- field=models.CharField(choices=[('new', 'Waiting for payment'), ('confirmed', 'Confirmed'), ('cancelled', 'Cancelled'), ('rejected', 'Rejected by processor'), ('error', 'Payment processing failed')], default='new', max_length=16),
- ),
- ]
|