Commit 25f9cd3f authored by Michal Čihař's avatar Michal Čihař

Add field for statically storing suggestions counts

parent ef040195
......@@ -87,6 +87,7 @@ class Translation(models.Model):
fuzzy = models.IntegerField(default=0, db_index=True)
total = models.IntegerField(default=0, db_index=True)
failing_checks = models.IntegerField(default=0, db_index=True)
have_suggestion = models.IntegerField(default=0, db_index=True)
enabled = models.BooleanField(default=True, db_index=True)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment