Advertisement
Guest User

databse.yml

a guest
Jul 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. #
  7. default: &default
  8. adapter: mysql2
  9. encoding: utf8
  10. reconnect: false
  11. pool: 5
  12. username: root
  13. password: 1234
  14.  
  15. development:
  16. <<: *default
  17. database: hr_development
  18.  
  19. # Warning: The database defined as "test" will be erased and
  20. # re-generated from your development database when you run "rake".
  21. # Do not set this db to the same as development or production.
  22. test:
  23. <<: *default
  24. database: hr_test
  25.  
  26. production:
  27. <<: *default
  28. database: hr_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement