bornhack-website/src/shop/migrations/0031_auto_20161109_1000.py

28 lines
709 B
Python
Raw Normal View History

2016-11-09 11:27:42 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-09 10:00
2017-01-30 11:16:07 +00:00
2016-11-09 11:27:42 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("shop", "0030_auto_20160827_0752")]
2016-11-09 11:27:42 +00:00
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
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,
),
)
2016-11-09 11:27:42 +00:00
]