zappyzep/migrations/20180818192600_rename_spam_logs_to_archives.js

8 lines
197 B
JavaScript
Raw Normal View History

exports.up = async function(knex) {
await knex.schema.renameTable('spam_logs', 'archives');
};
exports.down = async function(knex) {
await knex.schema.renameTable('archives', 'spam_logs');
};