1
1
mirror of https://github.com/Burn-E99/TheArtificer.git synced 2026-06-04 09:03:50 -04:00

upgrade charset on db to support emojis

This commit is contained in:
Ean Milligan
2025-07-13 05:10:37 -04:00
parent 7301df4d9d
commit 500579f2a3
2 changed files with 10 additions and 9 deletions

View File

@@ -9,6 +9,7 @@ const dbClient = await new Client().connect({
db: config.db.name,
username: config.db.username,
password: config.db.password,
charset: 'utf8mb4',
});
export default dbClient;