vote: Store vote details for 90 days.

This commit is contained in:
Neil Williams
2012-09-21 10:26:08 -07:00
committed by Max Goodman
parent dceca6edbc
commit 21b33b5a06

View File

@@ -90,7 +90,7 @@ class CommentVotesByAccount(VotesByAccount):
class VoteDetailsByThing(tdb_cassandra.View):
_use_db = False
_ttl = 60 * 60 * 24 * 30
_ttl = timedelta(days=90).total_seconds()
_fetch_all_columns = True
_extra_schema_creation_args = dict(key_validation_class=ASCII_TYPE,
default_validation_class=UTF8_TYPE)