skyline-sequelize
Advanced tools
Comparing version 0.5.2 to 0.6.0
@@ -458,2 +458,17 @@ 'use strict'; | ||
/** | ||
* A INTARRAY column, Only available in postgres. | ||
* @property INTARRAY | ||
*/ | ||
var INTARRAY = function() { | ||
if (!(this instanceof INTARRAY)) return new INTARRAY(); | ||
ABSTRACT.apply(this, arguments); | ||
}; | ||
util.inherits(INTARRAY, ABSTRACT); | ||
INTARRAY.prototype.key = INTARRAY.key = 'INTARRAY'; | ||
INTARRAY.prototype.toSql = function() { | ||
return 'INT[]'; | ||
}; | ||
/** | ||
* A JSON string column. Only available in postgres. | ||
@@ -802,3 +817,4 @@ * @property JSON | ||
'DOUBLE PRECISION': DOUBLE, | ||
GEOMETRY: GEOMETRY | ||
GEOMETRY: GEOMETRY, | ||
INTARRAY: INTARRAY | ||
}; |
{ | ||
"name": "skyline-sequelize", | ||
"description": "Multi dialect ORM for Node.JS/io.js. Modify By Skyline", | ||
"version": "0.5.2", | ||
"version": "0.6.0", | ||
"author": "Sascha Depold <sascha@depold.com>", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
741328
16594