bornhack-website/shop/migrations/0032_order_customer_comment.py
Thomas Steen Rasmussen a691a0d0b4 add comment to orders
2016-11-09 14:34:55 +01:00

21 lines
564 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-09 11:46
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shop', '0031_auto_20161109_1000'),
]
operations = [
migrations.AddField(
model_name='order',
name='customer_comment',
field=models.TextField(default=b'', help_text='If you have any comments about the order please enter them here.', verbose_name='Customer comment'),
),
]