Guest User

Untitled

a guest
Jan 13th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. development:
  4. adapter: mysql
  5. encoding: utf8
  6. database: mmo
  7. pool: 5
  8. username: user
  9. password: xx
  10. socket: /var/run/mysqld/mysql.sock
  11. host: localhost
  12. # Warning: The database defined as "test" will be erased and
  13. # re-generated from your development database when you run "rake".
  14. # Do not set this db to the same as development or production.
  15. test:
  16. adapter: sqlite3
  17. database: db/test.sqlite3
  18. pool: 5
  19. timeout: 5000
  20.  
  21. production:
  22. adapter: mysql
  23. encoding: utf8
  24. database: mmo
  25. pool: 5
  26. username: user
  27. password: xxx
  28. socket: /var/run/mysqld/mysql.sock
  29. host: localhost
Add Comment
Please, Sign In to add comment