Added m2m field for holding channel subs (no migration yet)
This commit is contained in:
parent
9485dc17c8
commit
987695e417
1 changed files with 2 additions and 0 deletions
|
|
@ -356,6 +356,8 @@ class ChannelDB(TypedObject):
|
|||
permissions - perm strings
|
||||
|
||||
"""
|
||||
db_subscribers = models.ManyToManyField("players.PlayerDB",
|
||||
related_name="subscriber_player_set", null=True, verbose_name='subscribers', db_index=True)
|
||||
|
||||
# Database manager
|
||||
objects = managers.ChannelManager()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue