diff --git a/core/server/data/migrations/versions/2.0/1-rename-amp-column.js b/core/server/data/migrations/versions/2.0/1-rename-amp-column.js index f703e5186e..46679cfc08 100644 --- a/core/server/data/migrations/versions/2.0/1-rename-amp-column.js +++ b/core/server/data/migrations/versions/2.0/1-rename-amp-column.js @@ -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); }); }; diff --git a/core/server/data/migrations/versions/2.0/2-update-posts.js b/core/server/data/migrations/versions/2.0/2-update-posts.js index 79e92884c4..4781c6a8b8 100644 --- a/core/server/data/migrations/versions/2.0/2-update-posts.js +++ b/core/server/data/migrations/versions/2.0/2-update-posts.js @@ -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(); };