mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-17 15:15:02 +00:00
Rename SpamLogs to Archives. Tweak spam archive format.
This commit is contained in:
parent
ff99c1a84e
commit
97f32c5f15
5 changed files with 116 additions and 92 deletions
|
@ -0,0 +1,7 @@
|
|||
exports.up = async function(knex) {
|
||||
await knex.schema.renameTable('spam_logs', 'archives');
|
||||
};
|
||||
|
||||
exports.down = async function(knex) {
|
||||
await knex.schema.renameTable('archives', 'spam_logs');
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue