mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
8 lines
197 B
JavaScript
8 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');
|
||
|
};
|