Socket
Socket
Sign inDemoInstall

db-migrate

Package Overview
Dependencies
Maintainers
2
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.9.21 to 0.9.22

7

lib/driver/pg.js

@@ -53,3 +53,3 @@ var util = require('util');

this.runSql(util.format('CREATE DATABASE `%s` %s', dbName, spec), callback);
this.runSql(util.format('CREATE DATABASE "%s" %s', dbName, spec), callback);
},

@@ -68,3 +68,3 @@

this.runSql(util.format('DROP DATABASE %s `%s`', ifExists, dbName), callback);
this.runSql(util.format('DROP DATABASE %s "%s"', ifExists, dbName), callback);
},

@@ -361,3 +361,4 @@

this.connection.end();
callback(null);
if( typeof(callback) === 'function' )
callback(null);
}

@@ -364,0 +365,0 @@

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

],
"version": "0.9.21",
"version": "0.9.22",
"engines": {

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

Sorry, the diff of this file is not supported yet

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