mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
Add GlobalSetting model
This commit is contained in:
committed by
Raphael Michel
parent
8c4023f065
commit
02fd0a8e06
22
src/pretix/base/migrations/0043_globalsetting.py
Normal file
22
src/pretix/base/migrations/0043_globalsetting.py
Normal 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()),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user