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

Changed rollback messages

refs #9742

- use logging.warn
- make sure it's understandable that we are rolling back
This commit is contained in:
kirrg001 2018-07-22 15:06:38 +02:00 committed by Katharina Irrgang
parent ef355e281c
commit 90b56f925a
2 changed files with 6 additions and 6 deletions

View file

@ -3,9 +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 = `Rollback: Renaming column ${columnNameNew} to ${columnNameOld}`,
message3 = `Renamed column ${columnNameOld} to ${columnNameNew}`,
message4 = `Renamed column ${columnNameNew} to ${columnNameOld}`;
message4 = `Rollback: Renamed column ${columnNameNew} to ${columnNameOld}`;
module.exports.up = (options) => {
const connection = options.connection;
@ -28,7 +28,7 @@ module.exports.up = (options) => {
module.exports.down = (options) => {
let connection = options.connection;
common.logging.info(message2);
common.logging.warn(message2);
return connection.schema.hasColumn(table, columnNameNew)
.then((exists) => {
@ -39,6 +39,6 @@ module.exports.down = (options) => {
}
})
.then(() => {
common.logging.info(message4);
common.logging.warn(message4);
});
};

View file

@ -4,7 +4,7 @@ const _ = require('lodash'),
models = require('../../../../models'),
message1 = 'Updating post data (comment_id)',
message2 = 'Updated post data (comment_id)',
message3 = 'Nothing todo. Keep correct comment_id values in amp column.';
message3 = 'Rollback: Keep correct comment_id values in amp column.';
module.exports.config = {
transaction: true
@ -37,6 +37,6 @@ module.exports.up = (options) => {
};
module.exports.down = () => {
common.logging.info(message3);
common.logging.warn(message3);
return Promise.resolve();
};