Restructure settings framework

This commit is contained in:
Raphael Michel
2015-03-06 00:16:46 +01:00
parent 386bd032cf
commit 6ffdd33cf5
4 changed files with 146 additions and 99 deletions

View File

@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0013_merge'),
]
operations = [
migrations.RenameField(
model_name='eventsetting',
old_name='event',
new_name='object',
),
migrations.RenameField(
model_name='organizersetting',
old_name='organizer',
new_name='object',
),
]