Socket
Socket
Sign inDemoInstall

db-migrate-base

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

db-migrate-base - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

7

index.js

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

this._escapeDDL +
' ORDER BY run_on DESC, name DESC';
` ORDER BY ${this.escapeDDL('run_on')} DESC,
${this.escapeDDL('name')} DESC`;
return this.allAsync(sql);

@@ -697,3 +698,3 @@ },

this._escapeDDL +
' WHERE key = ?';
` WHERE ${this.escapeDDL('key')} = ?`;
return this.allAsync(sql, [key]).then(([row]) => row);

@@ -748,3 +749,3 @@ },

this._escapeDDL +
' WHERE key = ?';
` WHERE ${this.escapeDDL('key')} = ?`;
return this.runSql(sql, [key]);

@@ -751,0 +752,0 @@ },

{
"name": "db-migrate-base",
"version": "2.1.0",
"version": "2.1.1",
"description": "db-migrate base driver",

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

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