[database.yml] Use makara in development too

This commit is contained in:
Fosco Marotto 2020-12-27 01:59:24 -05:00
parent 91c1b769c3
commit 818a9910c1
1 changed files with 17 additions and 5 deletions

View File

@ -7,11 +7,23 @@ default: &default
development: development:
<<: *default <<: *default
database: <%= ENV['DB_NAME'] || 'gabsocial_development' %> adapter: postgresql_makara
username: <%= ENV['DB_USER'] %> prepared_statements: false
password: <%= ENV['DB_PASS'] %> makara:
host: <%= ENV['DB_HOST'] %> id: postgres
port: <%= ENV['DB_PORT'] %> sticky: true
connections:
- role: master
blacklist_duration: 0
url: postgresql://<%= ENV['DB_USER']%>:<%= ENV['DB_PASS'] %>@<%= ENV['DB_HOST'] %>:<%= ENV['DB_PORT'] %>/<%= ENV['DB_NAME'] || 'gabsocial_development' %>
- role: slave
url: postgresql://<%= ENV['DB_USER']%>:<%= ENV['DB_PASS'] %>@<%= ENV['DB_HOST'] %>:<%= ENV['DB_PORT'] %>/<%= ENV['DB_NAME'] || 'gabsocial_development' %>
# database: <%= ENV['DB_NAME'] || 'gabsocial_development' %>
# username: <%= ENV['DB_USER'] %>
# password: <%= ENV['DB_PASS'] %>
# host: <%= ENV['DB_HOST'] %>
# port: <%= ENV['DB_PORT'] %>
# Warning: The database defined as "test" will be erased and # Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake". # re-generated from your development database when you run "rake".