Guest User

Untitled

a guest
Jul 13th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. development: &defaults
  4. adapter: sqlite3
  5. database: db/development.sqlite3
  6. timeout: 5000
  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. <<: *defaults
  13. database: db/test.sqlite3
  14.  
  15. production:
  16. adapter: mysql
  17. database: book_production
  18. username: root
  19. password: 123456
  20. host: db.example.com
Add Comment
Please, Sign In to add comment