Django-如何每天自动将数据库列的值重置为0?

时间:2018-08-01 15:46:40

标签: django amazon-web-services

我正尝试每天在每天12:00 AM将此表的'today_count'值重置为0。有什么办法吗?

class HashTag(models.Model):
    tag = models.CharField(max_length=50, unique=True)
    count = models.DecimalField(max_digits=10, decimal_places=0)
    today_count = models.DecimalField(max_digits=10, decimal_places=0)

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以执行此操作,可以添加字段日,并且每次添加时都应检查今天是否正确,并且只有在此添加之后才能检查;如果今天不正确,则应将其设置为1并将今天更新为正确的日期。