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

fix: delete some bas sentences (issue #393) #404

Merged
merged 1 commit into from
Dec 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions server/migrations/20201223003612-remove-bas-sentences.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
'use strict';

module.exports = {
up: (queryInterface) => {
return queryInterface.sequelize.query(`
DELETE FROM Sentences
WHERE localeId="bas" AND sentence IN (
"éy! me bak le me kwo i lép.",
"ñemb a ññwéha i ndap mok.",
"ñkokon a mmal.",
"ñkum u ñkôs ndoñ, ñkum u nlôôs ndoñ.",
"ñkônôk u hibee mañga.",
"ñkônôk u ñgand.",
"ñkôô lipidô."
)
`);
},
down: () => Promise.resolve(),
};