@golemio/pid 2.2.7-dev.558498365 → 2.2.7-dev.558578045
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db/migrations/postgresql/{20220603062627-remove-vp-stops.js → 20220602062627-remove-vp-stops.js} +2 -2
- package/db/migrations/postgresql/sqls/{20220603062627-remove-vp-stops-down.sql → 20220602062627-remove-vp-stops-down.sql} +0 -0
- package/db/migrations/postgresql/sqls/{20220603062627-remove-vp-stops-up.sql → 20220602062627-remove-vp-stops-up.sql} +0 -0
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@ exports.setup = function(options, seedLink) {
|
|
|
19
19
|
};
|
|
20
20
|
|
|
21
21
|
exports.up = function(db) {
|
|
22
|
-
var filePath = path.join(__dirname, 'sqls', '
|
|
22
|
+
var filePath = path.join(__dirname, 'sqls', '20220602062627-remove-vp-stops-up.sql');
|
|
23
23
|
return new Promise( function( resolve, reject ) {
|
|
24
24
|
fs.readFile(filePath, {encoding: 'utf-8'}, function(err,data){
|
|
25
25
|
if (err) return reject(err);
|
|
@@ -34,7 +34,7 @@ exports.up = function(db) {
|
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
exports.down = function(db) {
|
|
37
|
-
var filePath = path.join(__dirname, 'sqls', '
|
|
37
|
+
var filePath = path.join(__dirname, 'sqls', '20220602062627-remove-vp-stops-down.sql');
|
|
38
38
|
return new Promise( function( resolve, reject ) {
|
|
39
39
|
fs.readFile(filePath, {encoding: 'utf-8'}, function(err,data){
|
|
40
40
|
if (err) return reject(err);
|
|
File without changes
|
|
File without changes
|