From bcc0c3edfc81701b08fbcc9fae083a728d171f20 Mon Sep 17 00:00:00 2001 From: JamesRamm Date: Tue, 19 Dec 2017 11:35:50 +0100 Subject: [PATCH] Migration --- .../migrations/0011_auto_20171219_1033.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 longclaw/longclaworders/migrations/0011_auto_20171219_1033.py diff --git a/longclaw/longclaworders/migrations/0011_auto_20171219_1033.py b/longclaw/longclaworders/migrations/0011_auto_20171219_1033.py new file mode 100644 index 0000000..fe51d30 --- /dev/null +++ b/longclaw/longclaworders/migrations/0011_auto_20171219_1033.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-12-19 10:33 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('longclaworders', '0010_auto_20171008_1449'), + ] + + operations = [ + migrations.AlterField( + model_name='order', + name='status', + field=models.IntegerField(choices=[(1, 'Submitted'), (2, 'Fulfilled'), (3, 'Cancelled'), (4, 'Refunded'), (5, 'Payment Failed')], default=1), + ), + ]