database.yml 659 B

12345678910111213141516171819202122232425262728293031
  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: sqlite3
  9. pool: 5
  10. timeout: 5000
  11. development:
  12. <<: *default
  13. database: db/development.sqlite3
  14. inflow_server:
  15. adapter: sqlserver
  16. host: 192.168.1.66
  17. database: InFlow
  18. username: sa
  19. password: 123
  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. <<: *default
  25. database: db/test.sqlite3
  26. production:
  27. <<: *default
  28. database: db/production.sqlite3