Skip to content

Commit

Permalink
Add type MONEY as numeric type (#3959)
Browse files Browse the repository at this point in the history
fixes #3953
  • Loading branch information
mistercrunch committed Dec 7, 2017
1 parent a26cf00 commit 5ee70b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/connectors/base/models.py
Expand Up @@ -222,7 +222,7 @@ def __repr__(self):

num_types = (
'DOUBLE', 'FLOAT', 'INT', 'BIGINT',
'LONG', 'REAL', 'NUMERIC', 'DECIMAL',
'LONG', 'REAL', 'NUMERIC', 'DECIMAL', 'MONEY',
)
date_types = ('DATE', 'TIME', 'DATETIME')
str_types = ('VARCHAR', 'STRING', 'CHAR')
Expand Down

0 comments on commit 5ee70b2

Please sign in to comment.