0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Optimised logging for the new migration files

refs #9742
This commit is contained in:
kirrg001 2018-07-22 14:03:59 +02:00 committed by Katharina Irrgang
parent 91152efdc1
commit 0a556f95c7
2 changed files with 14 additions and 2 deletions

View file

@ -3,7 +3,9 @@ const common = require('../../../../lib/common'),
columnNameOld = 'amp',
columnNameNew = 'comment_id',
message1 = `Renaming column ${columnNameOld} to ${columnNameNew}`,
message2 = `Renaming column ${columnNameNew} to ${columnNameOld}`;
message2 = `Renaming column ${columnNameNew} to ${columnNameOld}`,
message3 = `Renamed column ${columnNameOld} to ${columnNameNew}`,
message4 = `Renamed column ${columnNameNew} to ${columnNameOld}`;
module.exports.up = function renameAmpColumn(options) {
const connection = options.connection;
@ -17,6 +19,9 @@ module.exports.up = function renameAmpColumn(options) {
t.renameColumn(columnNameOld, columnNameNew);
});
}
})
.then(() => {
common.logging.info(message3);
});
};
@ -32,5 +37,8 @@ module.exports.down = function renameCommentIdColumn(options) {
t.renameColumn(columnNameNew, columnNameOld);
});
}
})
.then(() => {
common.logging.info(message4);
});
};

View file

@ -2,7 +2,8 @@ const _ = require('lodash'),
Promise = require('bluebird'),
common = require('../../../../lib/common'),
models = require('../../../../models'),
message1 = 'Updating post data (comment_id)';
message1 = 'Updating post data (comment_id)',
message2 = 'Updated post data (comment_id)';
module.exports.config = {
transaction: true
@ -28,5 +29,8 @@ module.exports.up = function updatePosts(options) {
comment_id: post.id
}, _.merge({id: post.id}, localOptions));
}, {concurrency: 100});
})
.then(() => {
common.logging.info(message2);
});
};