Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.63 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.   database: cms_plugins_dev
  6.   username: bryan
  7.   password: ****
  8.   host: localhost
  9.   pool: 5
  10.   timeout: 5000
  11.  
  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: mysql
  17.   database: cms_plugins_dev
  18.   username: bryan
  19.  
  20.   pool: 5
  21.   timeout: 5000
  22.  
  23. production:
  24.   adapter: sqlite3
  25.   database: /u/apps/cmsplugins/shared/production.sqlite3
  26.   pool: 5
  27.   timeout: 5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement