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

Commit

Permalink
fix: remove Ukranian sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler committed Feb 7, 2021
1 parent 9168044 commit ccfee6b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions server/migrations/20210207123612-remove-uk-sentences.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
'use strict';

module.exports = {
up: async (queryInterface) => {
await queryInterface.sequelize.query(`
DELETE FROM Sentences
WHERE (localeId="uk" AND source="cetation of Володимир Білінський")
`);

await queryInterface.sequelize.query(`
DELETE FROM Sentences
WHERE (localeId="uk" AND source="cetation of Іван Білик")
`);
},
down: () => Promise.resolve(),
};

0 comments on commit ccfee6b

Please sign in to comment.