Update postgres
This commit is contained in:
parent
134799763c
commit
a54961923d
|
@ -60,9 +60,9 @@ AbstractClass.prototype._initProperties = function (data, applySetters) {
|
||||||
))
|
))
|
||||||
});
|
});
|
||||||
|
|
||||||
if (properties[attr].type.name === 'JSON' && typeof this[_attr] === 'string') {
|
if (properties[attr].type.name === 'JSON' && this[_attr]) {
|
||||||
try {
|
try {
|
||||||
this[_attr] = JSON.parse(this[_attr]);
|
this[_attr] = JSON.parse(this[_attr] + '');
|
||||||
} catch (e) { }
|
} catch (e) { }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
"redis": ">= 0.6.7",
|
"redis": ">= 0.6.7",
|
||||||
"mongoose": ">= 2.2.3",
|
"mongoose": ">= 2.2.3",
|
||||||
"mysql": ">= 0.9.4",
|
"mysql": ">= 0.9.4",
|
||||||
"pg": ">= 0.6.9",
|
"pg": "latest",
|
||||||
"sqlite3": ">= 2.0.18",
|
"sqlite3": ">= 2.0.18",
|
||||||
"riak-js": ">= 0.4.1",
|
"riak-js": ">= 0.4.1",
|
||||||
"neo4j": ">= 0.2.5",
|
"neo4j": ">= 0.2.5",
|
||||||
|
|
Loading…
Reference in New Issue