Socket
Socket
Sign inDemoInstall

db-migrate

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

db-migrate - npm Package Compare versions

Comparing version 0.6.2 to 0.6.3

4

CHANGELOG.md

@@ -199,1 +199,5 @@ ## 0.1.0

## 0.6.3
Fix
- Fix postgres issue with camelCased column name during insert #137 (via @tone81)

@@ -177,2 +177,10 @@ var util = require('util');

insert: function(tableName, columnNameArray, valueArray, callback) {
columnNameArray = columnNameArray.map(function(columnName) {
return (columnName.charAt(0) != '"') ? '"' + columnName + '"' : columnName;
});
return this._super(tableName, columnNameArray, valueArray, callback);
},
runSql: function() {

@@ -179,0 +187,0 @@ var callback = arguments[arguments.length - 1];

2

package.json

@@ -14,3 +14,3 @@ {

],
"version": "0.6.2",
"version": "0.6.3",
"engines": {

@@ -17,0 +17,0 @@ "node": ">=0.6.0"

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