Advertisement
Guest User

Untitled

a guest
Apr 7th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. --- /dev/null 2017-04-07 18:45:21.000000000 +0300
  2. +++ config/database.yml 2017-04-07 18:29:47.000000000 +0300
  3. @@ -0,0 +1,22 @@
  4. +default: &default
  5. + adapter: postgresql
  6. + encoding: unicode
  7. + pool: 5
  8. +
  9. +development:
  10. + <<: *default
  11. + database: physiovia_development
  12. + # username: rails_five_app
  13. + # password:
  14. + # host: localhost
  15. + # port: 5432
  16. + # schema_search_path: myapp,sharedapp,public
  17. + # min_messages: notice
  18. +
  19. +test:
  20. + <<: *default
  21. + database: physiovia_test
  22. +
  23. +production:
  24. + <<: *default
  25. + url: <%= ENV['DATABASE_URL'] %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement