mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
exports.up = async function(knex) {
|
|
await knex.schema.renameTable('spam_logs', 'archives');
|
|
};
|
|
|
|
exports.down = async function(knex) {
|
|
await knex.schema.renameTable('archives', 'spam_logs');
|
|
};
|