Fixes mistake in parent model definition
This commit is contained in:
parent
4309a70c5e
commit
9c645c6ab6
4 changed files with 97 additions and 1 deletions
|
@ -10,6 +10,7 @@ class Status(FedireadsModel):
|
|||
''' any post, like a reply to a review, etc '''
|
||||
user = models.ForeignKey('User', on_delete=models.PROTECT)
|
||||
status_type = models.CharField(max_length=255, default='Note')
|
||||
content = models.TextField(blank=True, null=True)
|
||||
mention_users = models.ManyToManyField('User', related_name='mention_user')
|
||||
mention_books = models.ManyToManyField('Book', related_name='mention_book')
|
||||
activity_type = models.CharField(max_length=255, default='Note')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue