database.yml 501 B

12345678910111213141516171819202122
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. development:
  4. adapter: sqlite3
  5. database: db/development.sqlite3
  6. pool: 5
  7. timeout: 5000
  8. # Warning: The database defined as "test" will be erased and
  9. # re-generated from your development database when you run "rake".
  10. # Do not set this db to the same as development or production.
  11. test:
  12. adapter: sqlite3
  13. database: db/test.sqlite3
  14. pool: 5
  15. timeout: 5000
  16. production:
  17. adapter: sqlite3
  18. database: db/production.sqlite3
  19. pool: 5
  20. timeout: 5000