Guest User

Untitled

a guest
Apr 7th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3.  
  4. defaults: &defaults
  5. adapter: mysql
  6. username: root
  7. password: dexter
  8. encoding: utf8
  9.  
  10. development:
  11. database: depot_development
  12. <<: *defaults
  13. # Warning: The database defined as "test" will be erased and
  14. # re-generated from your development database when you run "rake".
  15. # Do not set this db to the same as development or production.
  16. test:
  17. database: depot_test
  18. <<: *defaults
  19.  
  20. production:
  21. database: depot_production
  22. <<: *defaults
Add Comment
Please, Sign In to add comment