Ghost/core/server/data/migrations/versions/1.18/1-add-webhooks-table.js

37 lines
1.1 KiB
JavaScript

const Promise = require('bluebird');
const logging = require('../../../../../shared/logging');
const commands = require('../../../schema').commands;
const table = 'webhooks';
const message1 = 'Adding table: ' + table;
const message2 = 'Dropping table: ' + table;
module.exports.up = function addWebhooksTable(options) {
let connection = options.connection;
return connection.schema.hasTable(table)
.then(function (exists) {
if (exists) {
logging.warn(message1);
return Promise.resolve();
}
logging.info(message1);
return commands.createTable(table, connection);
});
};
module.exports.down = function removeWebhooksTable(options) {
let connection = options.connection;
return connection.schema.hasTable(table)
.then(function (exists) {
if (!exists) {
logging.warn(message2);
return Promise.resolve();
}
logging.info(message2);
return commands.deleteTable(table, connection);
});
};