Change metadata_int's value field to type bigint

Change-Id: Icac8bd1cf55da9f645b5e27c45b6c2c918dcdab3
Closes-Bug: 1254604
This commit is contained in:
Lianhao Lu
2013-11-25 15:34:41 +08:00
parent ff20b3986f
commit 75c382141c
4 changed files with 57 additions and 5 deletions

View File

@@ -96,8 +96,8 @@ META_TYPE_MAP = {bool: models.MetaBool,
str: models.MetaText,
unicode: models.MetaText,
types.NoneType: models.MetaText,
int: models.MetaInt,
long: models.MetaInt,
int: models.MetaBigInt,
long: models.MetaBigInt,
float: models.MetaFloat}