bornhack-website/shop/migrations/0031_auto_20161109_1000.py
Thomas Steen Rasmussen 4dd2325926 add cash payment
2016-11-09 12:27:42 +01:00

21 lines
602 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-09 10:00
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shop', '0030_auto_20160827_0752'),
]
operations = [
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'), (b'cash', b'Cash')], default=b'', max_length=50),
),
]