From 5a61f95ab5644419db2b3b1b3e4527dc3ae7b1e5 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Tue, 1 Oct 2024 01:13:41 +0200 Subject: [PATCH] chore(postgresql): add new connection string --- snippets/postgresql.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/snippets/postgresql.sh b/snippets/postgresql.sh index f75c666..c35cd23 100644 --- a/snippets/postgresql.sh +++ b/snippets/postgresql.sh @@ -6,6 +6,7 @@ psql 'postgres' 'admin' psql --host 'prod.db.lan' --port '5432' --username 'postgres' --database 'postgres' --password psql -h 'host.fqnd' -p '5432' -U 'admin' -d 'postgres' -W psql 'postgresql://localhost:5433/games?sslmode=require' +psql 'host=host.fqdn port=5467 user=admin dbname=postgres' # List available databases psql … --list