Guest User

Untitled

a guest
Dec 11th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. config/database.yml
  2.  
  3. # SQLite version 3.x
  4. # gem install sqlite3
  5. #
  6. # Ensure the SQLite 3 gem is defined in your Gemfile
  7. # gem 'sqlite3'
  8. secret_development:
  9. adapter: sqlserver
  10. database: secret_db
  11. username: secret_user
  12. password: secret_pwd
  13. host: secret_host
  14.  
  15. development:
  16. adapter: sqlite3
  17. database: db/development.sqlite3
  18. pool: 5
  19. timeout: 5000
  20. # Warning: The database defined as "test" will be erased and
  21. # re-generated from your development database when you run "rake".
  22. # Do not set this db to the same as development or production.
  23. test:
  24. adapter: sqlite3
  25. database: db/test.sqlite3
  26. pool: 5
  27. timeout: 5000
  28.  
  29. production:
  30. adapter: sqlite3
  31. database: db/production.sqlite3
  32. pool: 5
  33. timeout: 5000
Add Comment
Please, Sign In to add comment