bornhack-website/src/shop/migrations/0056_auto_20180827_1020.py
2018-08-27 11:52:42 +02:00

23 lines
616 B
Python

# Generated by Django 2.0.4 on 2018-08-27 08:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shop', '0055_order_customer_address'),
]
operations = [
migrations.RemoveField(
model_name='order',
name='customer_address',
),
migrations.AddField(
model_name='order',
name='invoice_address',
field=models.TextField(blank=True, help_text='The invoice address for this order. Leave blank to use the email associated with the logged in user.'),
),
]