Truncated suppressions table

We have been adding emails to the suppressions table which are not on
the suppression list in Mailgun due to a misunderstanding of how
Mailgun handles 5xx error codes.
This commit is contained in:
Fabien "egg" O'Carroll 2023-01-11 09:50:24 +07:00
parent 9fe3555897
commit 1e393472dd

View File

@ -0,0 +1,12 @@
const logging = require('@tryghost/logging');
const {createNonTransactionalMigration} = require('../../utils');
module.exports = createNonTransactionalMigration(
async function up(knex) {
logging.info('Clearing suppressions table');
await knex('suppressions').truncate();
},
async function down() {
logging.info('Not doing anything - table has been truncated');
}
);