@loftysoul/soul
Version:
The professional Content Management System, based ghost
45 lines (38 loc) • 1.42 kB
JavaScript
const common = require('../../../../lib/common'),
table = 'posts',
columnNameOld = 'amp',
columnNameNew = 'comment_id',
message1 = `Renaming column ${columnNameOld} to ${columnNameNew}`,
message2 = `Rollback: Renaming column ${columnNameNew} to ${columnNameOld}`,
message3 = `Renamed column ${columnNameOld} to ${columnNameNew}`,
message4 = `Rollback: Renamed column ${columnNameNew} to ${columnNameOld}`;
module.exports.up = (options) => {
const connection = options.connection;
common.logging.info(message1);
return connection.schema.hasColumn(table, columnNameOld)
.then((exists) => {
if (exists) {
return connection.schema.table(table, function (t) {
t.renameColumn(columnNameOld, columnNameNew);
});
}
})
.then(() => {
common.logging.info(message3);
});
};
module.exports.down = (options) => {
let connection = options.connection;
common.logging.warn(message2);
return connection.schema.hasColumn(table, columnNameNew)
.then((exists) => {
if (exists) {
return connection.schema.table(table, function (t) {
t.renameColumn(columnNameNew, columnNameOld);
});
}
})
.then(() => {
common.logging.warn(message4);
});
};