Socket
Socket
Sign inDemoInstall

db-migrate-pg

Package Overview
Dependencies
3
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.3 to 0.1.4

11

index.js

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

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

@@ -87,3 +88,4 @@

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

@@ -477,3 +479,6 @@

this.connection.end();
return Promise.resolve().nodeify(callback);
if( typeof(callback) === 'function' )
return Promise.resolve().nodeify(callback);
else
return Promise.resolve();
}

@@ -480,0 +485,0 @@

{
"name": "db-migrate-pg",
"version": "0.1.3",
"version": "0.1.4",
"description": "A postgresql driver for db-migrate",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc