mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-16 18:36:18 +00:00
current page update in article api
This commit is contained in:
@ -173,6 +173,8 @@ class JuniorArticle(models.Model):
|
||||
# article completed"""
|
||||
is_completed = models.BooleanField(default=False)
|
||||
status = models.CharField(max_length=10, choices=ARTICLE_STATUS, null=True, blank=True, default='1')
|
||||
current_card_page = models.IntegerField(blank=True, null=True, default=0)
|
||||
current_que_page = models.IntegerField(blank=True, null=True, default=0)
|
||||
created_at = models.DateTimeField(auto_now_add=True)
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
||||
|
Reference in New Issue
Block a user