bornhack-website/src/shop/migrations/0023_order_cancelled.py

19 lines
395 B
Python
Raw Normal View History

2016-06-01 09:10:06 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.6 on 2016-06-01 08:53
2017-01-30 11:16:07 +00:00
2016-06-01 09:10:06 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("shop", "0022_auto_20160530_2301")]
2016-06-01 09:10:06 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="order",
name="cancelled",
2016-06-01 09:10:06 +00:00
field=models.BooleanField(default=False),
2019-06-16 12:32:24 +00:00
)
2016-06-01 09:10:06 +00:00
]