Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-pg-migrate

Package Overview
Dependencies
Maintainers
7
Versions
179
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 5.0.1 to 5.0.2

6

CHANGELOG.md
# Change Log
## [5.0.2](2020-06-05)
### Fixed
- Fix alter column collation [#641](https://github.com/salsita/node-pg-migrate/pull/641)
## [5.0.1](2020-06-02)

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

2

dist/operations/tables.js

@@ -263,3 +263,3 @@ "use strict";

const typeStr = utils_1.applyTypeAdapters(type);
const collationStr = collation ? `COLLATE ${collation}` : '';
const collationStr = collation ? ` COLLATE ${collation}` : '';
const usingStr = using ? ` USING ${using}` : '';

@@ -266,0 +266,0 @@ actions.push(`SET DATA TYPE ${typeStr}${collationStr}${usingStr}`);

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

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

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