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
612 B
Python
21 lines
612 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-09-07 00:18
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('payments', '0004_auto_20160904_0048'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='subscription',
|
|
name='status',
|
|
field=models.CharField(choices=[('new', 'Created'), ('unconfirmed', 'Waiting for payment'), ('active', 'Active'), ('cancelled', 'Cancelled'), ('error', 'Error')], default='new', max_length=16),
|
|
),
|
|
]
|