node-pg-migrate
Advanced tools
Comparing version 5.0.1 to 5.0.2
# 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 @@ |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
279442