New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-pg-migrate

Package Overview
Dependencies
Maintainers
3
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pg-migrate - npm Package Compare versions

Comparing version

to
3.2.1

6

CHANGELOG.md
# Change Log
## [3.2.1](2018-05-21)
### Fixed
* Fix type name issue when the type is not in the default schema [#264](https://github.com/salsita/node-pg-migrate/pull/264)
## [3.2.0](2018-05-17)

@@ -4,0 +10,0 @@

4

dist/operations/tables.js

@@ -110,3 +110,5 @@ "use strict";

return _utils.template`"${columnName}" ${type}${constraintsStr}`;
var sType = typeof type === "object" ? `"${(0, _utils.schemalize)(type)}"` : type;
return _utils.template`"${columnName}" ${sType}${constraintsStr}`;
}),

@@ -113,0 +115,0 @@ constraints: _extends({}, multiplePrimaryColumns ? { primaryKey: primaryColumns } : {}),

{
"name": "node-pg-migrate",
"version": "3.2.0",
"version": "3.2.1",
"description": "Postgresql database migration management tool for node.js",

@@ -5,0 +5,0 @@ "author": "Theo Ephraim",