mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 20:35:02 +00:00
Rename SpamLogs to Archives. Tweak spam archive format.
This commit is contained in:
parent
c9db802638
commit
e3ff4cef45
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