Add field manually_approves_followers to db.

This commit is contained in:
Adam Kelly
2020-03-09 20:11:44 +00:00
parent a0f1880f37
commit 971186ef3a
4 changed files with 21 additions and 1 deletions

View File

@ -50,6 +50,7 @@ class User(AbstractUser):
)
created_date = models.DateTimeField(auto_now_add=True)
updated_date = models.DateTimeField(auto_now=True)
manually_approves_followers = models.BooleanField(default=False)
@property
def absolute_id(self):