mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 15:37:17 +02:00
Follow-up on that last one-- missed one of the Abstract models.
This commit is contained in:
parent
2e08517ec5
commit
adb3965888
4 changed files with 324 additions and 1 deletions
|
|
@ -323,7 +323,7 @@ class Attribute(SharedMemoryModel):
|
|||
# access through the value property
|
||||
db_value = models.TextField('value', blank=True, null=True)
|
||||
# Lock storage
|
||||
db_lock_storage = models.CharField('locks', max_length=512, blank=True)
|
||||
db_lock_storage = models.TextField('locks', blank=True)
|
||||
# references the object the attribute is linked to (this is set
|
||||
# by each child class to this abstact class)
|
||||
db_obj = None # models.ForeignKey("RefencedObject")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue