Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. development: &development
  2. adapter: mysql2
  3. encoding: utf8
  4. database: fat_free_crm_development
  5. pool: 5
  6. username: root
  7. # password:
  8. socket: /var/run/mysqld/mysqld.sock
  9.  
  10. # Warning: The database defined as "test" will be erased and
  11. # re-generated from your development database when you run "rake".
  12. # Do not set this db to the same as development or production.
  13. test:
  14. <<: *development
  15. database: fat_free_crm_test
  16.  
  17. production:
  18. adapter: mysql
  19. encoding: utf8
  20. database: fat_free_crm_production
  21. pool: 5
  22. username: root
  23. password:
  24. socket: /var/run/mysqld/mysqld.sock
  25. socket: /tmp/mysql.sock
  26.  
  27. staging:
  28. <<: *development
  29. database: fat_free_crm_staging
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement