You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
642 B
Python
21 lines
642 B
Python
# -*- 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),
|
|
),
|
|
]
|