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.2.2 to 0.2.3

5

CHANGELOG.md

@@ -61,1 +61,6 @@ ## 0.1.0

- Fix default value error when using Postgres #43
## 0.2.3
Fix:
- Fix error when using mysql-2.0.0-alpha3 driver #44

4

lib/driver/mysql.js

@@ -110,4 +110,4 @@ var util = require('util');

var db;
if (typeof(mysql.createConnection === 'undefined')) {
db = config.db || new mysql.createClient(config);
if (typeof(mysql.createConnection) === 'undefined') {
db = config.db || new mysql.createClient(config);
} else {

@@ -114,0 +114,0 @@ db = config.db || new mysql.createConnection(config);

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

],
"version": "0.2.2",
"version": "0.2.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