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

Commit

Permalink
fix: remove all oc sentences (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler committed Oct 27, 2022
1 parent a41e83f commit 9203e4f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions server/migrations/20221027223900-remove-oc.js
@@ -0,0 +1,13 @@
"use strict";

// https://github.com/common-voice/sentence-collector/issues/641

module.exports = {
up: async (queryInterface) => {
await queryInterface.sequelize.query(`
DELETE FROM Sentences
WHERE localeId = "oc"
`);
},
down: () => Promise.resolve(),
};

0 comments on commit 9203e4f

Please sign in to comment.