From d5f0c89951c63fa071205c07aea9a3e1d6e2a431 Mon Sep 17 00:00:00 2001 From: Richard Herbert Date: Sun, 5 Oct 2025 10:32:39 +0100 Subject: [PATCH] Added quotation around connectionInfo keys --- templates/config.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/config.txt b/templates/config.txt index 75da697..115a016 100644 --- a/templates/config.txt +++ b/templates/config.txt @@ -8,12 +8,12 @@ "schema": "${DB_SCHEMA}", "migrationsTable": "cfmigrations", "connectionInfo": { - type: "${DB_DRIVER}", - database: "${DB_DATABASE}", - host: "${DB_HOST}", - port: ${DB_PORT}, - username: "${DB_USER}", - password: "${DB_PASSWORD}" + "type": "${DB_DRIVER}", + "database": "${DB_DATABASE}", + "host": "${DB_HOST}", + "port": ${DB_PORT}, + "username": "${DB_USER}", + "password": "${DB_PASSWORD}" } } }