bornhack-website/src/shop/migrations/0029_auto_20160712_2133.py

19 lines
430 B
Python
Raw Normal View History

2016-07-12 21:34:46 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-07-12 21:33
2017-01-30 11:16:07 +00:00
2016-07-12 21:34:46 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("shop", "0028_auto_20160712_2119")]
2016-07-12 21:34:46 +00:00
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="customorder",
name="customer",
field=models.TextField(help_text="The customer info for this order"),
)
2016-07-12 21:34:46 +00:00
]