Skip to content

Commit

Permalink
Fixed missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Aug 30, 2016
1 parent 159519b commit 5659cb1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/pretix/base/migrations/0034_auto_20160830_1952.py
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.7 on 2016-08-30 19:52
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('pretixbase', '0033_auto_20160821_2222'),
]

operations = [
migrations.AddField(
model_name='invoice',
name='footer_text',
field=models.TextField(blank=True),
),
migrations.AddField(
model_name='invoice',
name='introductory_text',
field=models.TextField(blank=True),
),
]

0 comments on commit 5659cb1

Please sign in to comment.