mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 15:37:17 +02:00
Database schema has changed. Run migrations if you use South. Started work on tidying up admin interface.
This commit is contained in:
parent
60e980be67
commit
399919a8a9
14 changed files with 562 additions and 25 deletions
|
|
@ -50,7 +50,7 @@ class HelpEntry(SharedMemoryModel):
|
|||
# a string of permissionstrings, separated by commas.
|
||||
db_permissions = models.CharField(max_length=255, blank=True)
|
||||
# lock string storage
|
||||
db_lock_storage = models.TextField(blank=True)
|
||||
db_lock_storage = models.CharField(max_length=512, blank=True)
|
||||
# (deprecated, only here to allow MUX helpfile load (don't use otherwise)).
|
||||
# TODO: remove this when not needed anymore.
|
||||
db_staff_only = models.BooleanField(default=False)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue