Include SSL Options for MySQL

This commit is contained in:
Jonathon Aroutsidis
2025-10-08 10:57:58 +11:00
parent 6b00adf8b9
commit e34206b526
3 changed files with 23 additions and 2 deletions

View File

@@ -21,7 +21,8 @@ const generateDbConfig = () => {
user: cfg.user,
password: cfg.password,
database: cfg.name,
port: cfg.port,
port: cfg.port,
...(cfg.ssl ? { ssl: cfg.ssl } : {})
},
migrations: {
tableName: "migrations",