mirror of
https://github.com/evennia/evennia.git
synced 2026-03-24 16:56:32 +01:00
26 lines
752 B
Python
26 lines
752 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ServerConfig',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
('db_key', models.CharField(unique=True, max_length=64)),
|
|
('db_value', models.TextField(blank=True)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Server Config value',
|
|
'verbose_name_plural': 'Server Config values',
|
|
},
|
|
bases=(models.Model,),
|
|
),
|
|
]
|