Ghost/core/server/data/migrations/versions/3.0/02-drop-token-auth-tables.js

31 lines
884 B
JavaScript

const logging = require('../../../../../shared/logging');
const commands = require('../../../schema').commands;
const tables = [
'accesstokens',
'refreshtokens'
];
module.exports.up = (options) => {
const connection = options.connection;
return Promise.each(tables, function (table) {
return connection.schema.hasTable(table)
.then(function (exists) {
if (!exists) {
logging.warn(`Dropping table: ${table}`);
return;
}
logging.info(`Dropping table: ${table}`);
return commands.deleteTable(table, connection);
});
});
};
// the schemas for the deleted tables no longer exist so there's nothing for
// `commands.createTable` to draw from for the table structure
module.exports.down = () => {
return Promise.resolve();
};