From e5ea3267dfa0a2f52c5b8fc21f0e1c67914d464f Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 5 Jun 2016 23:28:13 +0200 Subject: [PATCH] missing migration for shop - product ordering and payment method default --- shop/migrations/0024_auto_20160605_2126.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 shop/migrations/0024_auto_20160605_2126.py diff --git a/shop/migrations/0024_auto_20160605_2126.py b/shop/migrations/0024_auto_20160605_2126.py new file mode 100644 index 00000000..7964096a --- /dev/null +++ b/shop/migrations/0024_auto_20160605_2126.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.2 on 2016-06-05 21:26 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('shop', '0023_order_cancelled'), + ] + + operations = [ + migrations.AlterModelOptions( + name='product', + options={'ordering': ['available_in', 'price'], 'verbose_name': 'Product', 'verbose_name_plural': 'Products'}, + ), + migrations.AlterField( + model_name='order', + name='payment_method', + field=models.CharField(choices=[(b'credit_card', b'Credit card'), (b'blockchain', b'Blockchain'), (b'bank_transfer', b'Bank transfer')], default=b'', max_length=50), + ), + ]