remove MySQL references from README
Some checks failed
Node.js CI / build (postgresql, 18.18, 10) (push) Has been cancelled

This commit is contained in:
Francis Cao 2025-10-31 09:12:32 -07:00
parent eb3cfbfa88
commit c9f522b24d
2 changed files with 2 additions and 10 deletions

View file

@ -1,6 +1,5 @@
export const PRISMA = 'prisma';
export const POSTGRESQL = 'postgresql';
export const MYSQL = 'mysql';
export const CLICKHOUSE = 'clickhouse';
export const KAFKA = 'kafka';
export const KAFKA_PRODUCER = 'kafka-producer';
@ -31,7 +30,7 @@ export async function runQuery(queries: any) {
const db = getDatabaseType();
if (db === POSTGRESQL || db === MYSQL) {
if (db === POSTGRESQL) {
return queries[PRISMA]();
}
}