diff options
Diffstat (limited to 'hyperkitty/models.py')
-rw-r--r-- | hyperkitty/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hyperkitty/models.py b/hyperkitty/models.py index 8b2e514..4c18d55 100644 --- a/hyperkitty/models.py +++ b/hyperkitty/models.py @@ -66,10 +66,9 @@ class UserProfile(models.Model): class Tag(models.Model): # @TODO: instead of list_address, user list model from kittystore? list_address = models.CharField(max_length=255, db_index=True) - # @TODO: instead of threadid, use thread model from kittystore? threadid = models.CharField(max_length=100, db_index=True) - + user = models.ForeignKey(User) tag = models.CharField(max_length=255) def __unicode__(self): |