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

Commit

Permalink
fix: remove certain sentences for tok language (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler authored Feb 20, 2022
1 parent 1096aef commit 7aa6ad7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions server/migrations/20220220135100-remove-tok-sentences.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
'use strict';

// https://discourse.mozilla.org/t/sentence-collector-copyright-issues/52767/51

module.exports = {
up: async (queryInterface) => {
await queryInterface.sequelize.query(`
DELETE FROM Sentences WHERE (
localeId="tok" AND source="http://tokisoweli.blogspot.com/"
)
`);
},
down: () => Promise.resolve(),
};

0 comments on commit 7aa6ad7

Please sign in to comment.