node-pg-migrate
Advanced tools
Comparing version 2.24.0 to 2.24.1
# Change Log | ||
## [2.24.1] (2018-03-05) | ||
### Fixed | ||
- Fix auto create schema [#206](https://github.com/salsita/node-pg-migrate/pull/206) | ||
## [2.24.0] (2018-03-01) | ||
@@ -4,0 +10,0 @@ |
@@ -183,3 +183,3 @@ 'use strict'; | ||
promise = promise.then(function () { | ||
return db.query(`CREATE SCHEMA IF NOT EXISTS '${options.schema}'`); | ||
return db.query(`CREATE SCHEMA IF NOT EXISTS "${options.schema}"`); | ||
}); | ||
@@ -193,3 +193,3 @@ } | ||
promise = promise.then(function () { | ||
return db.query(`CREATE SCHEMA IF NOT EXISTS '${options.migrations_schema}'`); | ||
return db.query(`CREATE SCHEMA IF NOT EXISTS "${options.migrations_schema}"`); | ||
}); | ||
@@ -196,0 +196,0 @@ } |
@@ -33,3 +33,3 @@ { | ||
], | ||
"version": "2.24.0", | ||
"version": "2.24.1", | ||
"engines": { | ||
@@ -36,0 +36,0 @@ "node": ">=4.0.0" |
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
172340