bornhack-website/src/shop/migrations/0028_auto_20160712_2119.py

28 lines
718 B
Python
Raw Normal View History

2016-07-12 21:19:43 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-07-12 21:19
2017-01-30 11:16:07 +00:00
2016-07-12 21:19:43 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("shop", "0027_auto_20160712_2036")]
2016-07-12 21:19:43 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="customorder",
name="customer",
field=models.TextField(
default="",
help_text="The customer info for this order, use <br> for newlines",
),
2016-07-12 21:19:43 +00:00
preserve_default=False,
),
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="customorder",
name="text",
field=models.TextField(help_text="The invoice text"),
2016-07-12 21:19:43 +00:00
),
]