@wmfs/pg-diff-sync
Advanced tools
Comparing version 1.11.0 to 1.11.1
@@ -0,1 +1,8 @@ | ||
## [1.11.1](https://github.com/wmfs/pg-diff-sync/compare/v1.11.0...v1.11.1) (2018-12-18) | ||
### 🐛 Bug Fixes | ||
* Tweak column alter check to remove false positives ([0f712b8](https://github.com/wmfs/pg-diff-sync/commit/0f712b8)) | ||
# [1.11.0](https://github.com/wmfs/pg-diff-sync/compare/v1.10.0...v1.11.0) (2018-12-18) | ||
@@ -2,0 +9,0 @@ |
@@ -76,6 +76,3 @@ const fs = require('fs') | ||
isDifferent(column.target.array, column.base.array) || | ||
isDifferent(column.target.dataType, column.base.dataType) || | ||
isDifferent(column.target.columnDefault, column.base.columnDefault) || | ||
isDifferent(column.target.characterMaximumLength, column.base.characterMaximumLength) || | ||
isDifferent(column.target.numericScale, column.base.numericScale) | ||
isDifferent(column.target.dataType, column.base.dataType) | ||
) { | ||
@@ -82,0 +79,0 @@ statements.push( |
{ | ||
"name": "@wmfs/pg-diff-sync", | ||
"version": "1.11.0", | ||
"version": "1.11.1", | ||
"description": "Takes two objects that describe the structure of a database and produces the PostgreSQL statements required to get from one to the other.", | ||
@@ -5,0 +5,0 @@ "author": "West Midlands Fire Service", |
Sorry, the diff of this file is not supported yet
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
87132
1718