Use quotes instead of back ticks in postgresql script

This fixes the SQLSTATE 42601 syntax error.
This commit is contained in:
ionutboangiu
2023-08-01 11:34:20 -04:00
committed by Dan Christian Bogos
parent df81455cfb
commit c5f97372be
2 changed files with 2 additions and 2 deletions

View File

@@ -3,4 +3,4 @@ postgresql_version: "postgresql"
postgresql_repo: "http://apt.postgresql.org/pub/repos/apt"
postgresql_key_url: "https://www.postgresql.org/media/keys/ACCC4CF8.asc"
postgresql_service_state: "started"
postgresql_service_enabled: "no"
postgresql_service_enabled: false

View File

@@ -450,7 +450,7 @@ CREATE INDEX tp_routes_unique ON tp_routes ("tpid", "tenant", "id",
"transport" varchar(64) NOT NULL,
"connect_attempts" INTEGER NOT NULL,
"reconnects" INTEGER NOT NULL,
`max_reconnect_interval` varchar(64) NOT NULL,
"max_reconnect_interval" varchar(64) NOT NULL,
"connect_timeout" varchar(64) NOT NULL,
"reply_timeout" varchar(64) NOT NULL,
"tls" BOOLEAN NOT NULL,