development: adapter: postgresql encoding: unicode database: sandbox_dev pool: 5 username: postgres password: password host: localhost port: 5432 test: adapter: postgresql encoding: unicode database: sandbox_test pool: 5 username: postgres password: password host: localhost port: 5432 staging: adapter: postgresql encoding: unicode database: sandbox_staging pool: 10 username: <%= ENV['DB_USERNAME'] %> password: <%= ENV['DB_PASSWORD'] %> host: <%= ENV['DB_HOST'] %> port: 5432 production: adapter: postgresql encoding: unicode database: sandbox_production pool: 20 username: <%= ENV['DB_USERNAME'] %> password: <%= ENV['DB_PASSWORD'] %> host: <%= ENV['DB_HOST'] %> port: 5432 ssl: true