bornhack-website/src/shop/migrations/0057_order_notes.py

21 lines
582 B
Python
Raw Normal View History

# Generated by Django 2.0.4 on 2018-08-27 10:40
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("shop", "0056_auto_20180827_1020")]
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="order",
name="notes",
field=models.TextField(
blank=True,
default="",
help_text="Any internal notes about this order can be entered here. They will not be printed on the invoice or shown to the customer in any way.",
),
)
]