migration for previous commit

This commit is contained in:
Thomas Steen Rasmussen 2016-05-30 20:24:49 +02:00
parent ac4444f070
commit 23b1b5e350

View file

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-05-30 18:24
from __future__ import unicode_literals
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/'),
),
]