Advertisement
Guest User

Untitled

a guest
May 5th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.69 KB | None | 0 0
  1. development:
  2.   adapter: mysql
  3.   encoding: utf8
  4.   reconnect: false
  5.   database: myapp_development
  6.   pool: 5
  7.   username: root
  8.   password: mypass
  9.   hostname: localhost
  10.  
  11. # Warning: The database defined as "test" will be erased and
  12. # re-generated from your development database when you run "rake".
  13. # Do not set this db to the same as development or production.
  14. test:
  15.   adapter: mysql
  16.   encoding: utf8
  17.   reconnect: false
  18.   database: myapp_test
  19.   pool: 5
  20.   username: root
  21.   password: mypass
  22.   hostname: localhost
  23.  
  24.   production:
  25.   adapter: mysql
  26.   encoding: utf8
  27.   reconnect: false
  28.   database: myapp_production
  29.   pool: 5
  30.   username: root
  31.   password: mypass
  32.   hostname: localhost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement