109 lines
4.2 KiB
Python
109 lines
4.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("typeclasses", "0002_auto_20150109_0913")]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="ObjectDB",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
verbose_name="ID", serialize=False, auto_created=True, primary_key=True
|
|
),
|
|
),
|
|
("db_key", models.CharField(max_length=255, verbose_name="key", db_index=True)),
|
|
(
|
|
"db_typeclass_path",
|
|
models.CharField(
|
|
help_text="this defines what 'type' of entity this is. This variable holds a Python path to a module with a valid Evennia Typeclass.",
|
|
max_length=255,
|
|
null=True,
|
|
verbose_name="typeclass",
|
|
),
|
|
),
|
|
(
|
|
"db_date_created",
|
|
models.DateTimeField(auto_now_add=True, verbose_name="creation date"),
|
|
),
|
|
(
|
|
"db_lock_storage",
|
|
models.TextField(
|
|
help_text="locks limit access to an entity. A lock is defined as a 'lock string' on the form 'type:lockfunctions', defining what functionality is locked and how to determine access. Not defining a lock means no access is granted.",
|
|
verbose_name="locks",
|
|
blank=True,
|
|
),
|
|
),
|
|
(
|
|
"db_sessid",
|
|
models.CommaSeparatedIntegerField(
|
|
help_text="csv list of session ids of connected Account, if any.",
|
|
max_length=32,
|
|
null=True,
|
|
verbose_name="session id",
|
|
),
|
|
),
|
|
(
|
|
"db_cmdset_storage",
|
|
models.CharField(
|
|
help_text="optional python path to a cmdset class.",
|
|
max_length=255,
|
|
null=True,
|
|
verbose_name="cmdset",
|
|
blank=True,
|
|
),
|
|
),
|
|
(
|
|
"db_attributes",
|
|
models.ManyToManyField(
|
|
help_text="attributes on this object. An attribute can hold any pickle-able python object (see docs for special cases).",
|
|
to="typeclasses.Attribute",
|
|
null=True,
|
|
),
|
|
),
|
|
(
|
|
"db_destination",
|
|
models.ForeignKey(
|
|
related_name="destinations_set",
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
blank=True,
|
|
to="objects.ObjectDB",
|
|
help_text="a destination, used only by exit objects.",
|
|
null=True,
|
|
verbose_name="destination",
|
|
),
|
|
),
|
|
(
|
|
"db_home",
|
|
models.ForeignKey(
|
|
related_name="homes_set",
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
verbose_name="home location",
|
|
blank=True,
|
|
to="objects.ObjectDB",
|
|
null=True,
|
|
),
|
|
),
|
|
(
|
|
"db_location",
|
|
models.ForeignKey(
|
|
related_name="locations_set",
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
verbose_name="game location",
|
|
blank=True,
|
|
to="objects.ObjectDB",
|
|
null=True,
|
|
),
|
|
),
|
|
],
|
|
options={"verbose_name": "Object", "verbose_name_plural": "Objects"},
|
|
bases=(models.Model,),
|
|
)
|
|
]
|