migration for previous commit
This commit is contained in:
parent
ac4444f070
commit
23b1b5e350
24
shop/migrations/0020_auto_20160530_1824.py
Normal file
24
shop/migrations/0020_auto_20160530_1824.py
Normal 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/'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue