Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
fix: remove a sv-SE sentences batch
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler committed Apr 2, 2023
1 parent 9b83d29 commit 320f783
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions server/migrations/20230402122800-remove-sv-SE-gutenberg.js
@@ -0,0 +1,13 @@
'use strict';

// https://discourse.mozilla.org/t/high-amount-of-low-quality-submissions-in-sentence-collector-makes-reviewing-boring/108368/8

module.exports = {
up: (queryInterface) => {
return queryInterface.sequelize.query(`
DELETE FROM Sentences
WHERE localeId = "sv-SE" AND batch = "30cb0726-3e9d-480c-8faf-ef79585ae782"
`);
},
down: () => Promise.resolve(),
};

0 comments on commit 320f783

Please sign in to comment.