From d5a675099a0ccf0c35ce1756f5015108cda1489a Mon Sep 17 00:00:00 2001 From: Eugen Date: Sun, 9 Apr 2017 05:46:32 +0200 Subject: Add env variable to disable prepared statements (#1293) --- config/database.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'config/database.yml') diff --git a/config/database.yml b/config/database.yml index 5ec342f93..810b83278 100644 --- a/config/database.yml +++ b/config/database.yml @@ -22,3 +22,4 @@ production: password: <%= ENV['DB_PASS'] || '' %> host: <%= ENV['DB_HOST'] || 'localhost' %> port: <%= ENV['DB_PORT'] || 5432 %> + prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %> -- cgit