20 lines
522 B
Python
20 lines
522 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-04-25 04:11
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('registrasion', '0024_auto_20160425_0410'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='cart',
|
|
name='status',
|
|
field=models.IntegerField(choices=[(1, 'Active'), (2, 'Paid'), (3, 'Released')], db_index=True, default=1),
|
|
),
|
|
]
|