This commit is contained in:
2021-03-12 02:11:45 +03:00
parent 672f374814
commit b043bc0127
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class Feed(models.Model):
chat_id = models.CharField(max_length=33)
check_interval = models.DurationField(help_text='in seconds')
last_check = models.DateTimeField(null=True, blank=True)
last_id = YAMLField(null=True, blank=True)
last_id = models.JSONField(null=True, blank=True)
config_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
config_id = models.PositiveIntegerField()