Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
AdImpressionsByCodename total needs to be BigInteger.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsimpson63 committed Mar 5, 2013
1 parent fddeb88 commit d77e213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r2/r2/models/traffic.py
Expand Up @@ -447,7 +447,7 @@ class AdImpressionsByCodename(Base):
date = Column(DateTime(), nullable=False, primary_key=True)
interval = Column(String(), nullable=False, primary_key=True)
unique_count = Column("unique", Integer())
pageview_count = Column("total", Integer())
pageview_count = Column("total", BigInteger())

@classmethod
@memoize_traffic(time=3600)
Expand Down

0 comments on commit d77e213

Please sign in to comment.