Add field manually_approves_followers to db.
This commit is contained in:
parent
a0f1880f37
commit
971186ef3a
4 changed files with 21 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue