Skip to content

Commit

Permalink
Correcting BINGINT
Browse files Browse the repository at this point in the history
  • Loading branch information
sebast1219 committed Jun 27, 2017
1 parent bc07556 commit 13d0f2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion monocle/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

TINY_TYPE = TINYINT(unsigned=True) # 0 to 255
MEDIUM_TYPE = MEDIUMINT(unsigned=True) # 0 to 4294967295
HUGE_TYPE = BIGINT(unsigned=True) # 0 to 18446744073709551615
HUGE_TYPE = BIGINT(unsigned=True) # 0 to 18446744073709551615
BIGINT = BIGINT() # 0 to 18446744073709551615
FLOAT_TYPE = DOUBLE(precision=17, scale=14, asdecimal=False)
elif conf.DB_ENGINE.startswith('postgres'):
from sqlalchemy.dialects.postgresql import DOUBLE_PRECISION
Expand Down

0 comments on commit 13d0f2d

Please sign in to comment.