Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

skyline-sequelize

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skyline-sequelize - npm Package Compare versions

Comparing version 0.5.2 to 0.6.0

18

lib/data-types.js

@@ -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
};

2

package.json
{
"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": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc