migration for previous commit
This commit is contained in:
parent
996ecbc36d
commit
863b0bc175
20
shop/migrations/0026_order_refunded.py
Normal file
20
shop/migrations/0026_order_refunded.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.9.2 on 2016-06-18 22:15
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('shop', '0025_creditnote'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='order',
|
||||||
|
name='refunded',
|
||||||
|
field=models.BooleanField(default=False, help_text='Whether this order has been refunded.', verbose_name='Refunded?'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue