consolidated medical terms into one dictionary

This commit is contained in:
Andrzej Stepien 2023-08-10 16:58:30 +02:00
parent aefaaf0d11
commit a842b281e4
3 changed files with 0 additions and 2 deletions

Binary file not shown.

0
src/database Normal file
View File

View File

@ -2,8 +2,6 @@ import { db } from "./db.mjs"
const blocklist = db.union([ const blocklist = db.union([
db('bad_words').select('word'), db('bad_words').select('word'),
db('medical_procedures').select('name'),
db('diseases').select('name'),
db('medical_dictionary').select('word') db('medical_dictionary').select('word')
]) ])