Forgot the comma, oopsies
Some checks failed
Compile / Compile (push) Failing after 20s

This commit is contained in:
2026-01-06 18:13:54 -03:00
parent 1253471fc3
commit f516f0cf00

View File

@@ -21,7 +21,7 @@ class Database
# Connect once when the bot starts
@conn = PG.connect(
host: ENV['DB_HOST'] || 'localhost',
dbname: ENV['DB_NAME'] || 'fgbot_db'
dbname: ENV['DB_NAME'] || 'fgbot_db',
user: ENV['DB_USER'] || 'postgres'
)