Add GlobalSetting model

This commit is contained in:
Tobias Kunze
2016-10-27 08:18:29 +02:00
committed by Raphael Michel
parent 8c4023f065
commit 02fd0a8e06
4 changed files with 58 additions and 20 deletions

View File

@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-10-27 06:15
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0042_order_expires'),
]
operations = [
migrations.CreateModel(
name='GlobalSetting',
fields=[
('key', models.CharField(max_length=255, primary_key=True, serialize=False)),
('value', models.TextField()),
],
),
]