database.yml: drop the " characters from the template

This commit is contained in:
Sameer Naik 2015-11-29 20:33:36 +05:30
parent 05c42b2e0d
commit 2b5b85599c

View File

@ -2,14 +2,14 @@
# PRODUCTION
#
production:
adapter: "{{DB_ADAPTER}}"
encoding: "{{DB_ENCODING}}"
collation: "utf8_general_ci"
adapter: {{DB_ADAPTER}}
encoding: {{DB_ENCODING}}
collation: utf8_general_ci
reconnect: false
database: "{{DB_NAME}}"
host: "{{DB_HOST}}"
database: {{DB_NAME}}
host: {{DB_HOST}}
port: {{DB_PORT}}
username: "{{DB_USER}}"
username: {{DB_USER}}
password: "{{DB_PASS}}"
pool: {{DB_POOL}}