bornhack-website/src/shop/migrations/0020_auto_20160530_1824.py

25 lines
550 B
Python
Raw Normal View History

2016-05-30 18:24:49 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-05-30 18:24
2017-01-30 11:16:07 +00:00
2016-05-30 18:24:49 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shop', '0019_invoice_pdf_generated'),
]
operations = [
migrations.RemoveField(
model_name='invoice',
name='pdf_generated',
),
migrations.AddField(
model_name='invoice',
name='pdf',
field=models.FileField(blank=True, null=True, upload_to=b'invoices/'),
),
]