Guest User

Untitled

a guest
Jun 5th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. development:
  4. adapter: mysql
  5. database: XXX_development
  6. user: root
  7.  
  8. # Warning: The database defined as "test" will be erased and
  9. # re-generated from your development database when you run "rake".
  10. # Do not set this db to the same as development or production.
  11. test:
  12. adapter: mysql
  13. database: XXX_test
  14. user: root
  15.  
  16. staging:
  17. adapter: mysql
  18. database: XXX_staging
  19. user: XXX_staging
  20. password: XXX
  21. host: localhost
  22.  
  23. production:
  24. adapter: mysql
  25. database: XXX_production
  26. user: XXX_app
  27. password: XXX
Add Comment
Please, Sign In to add comment