Guest User

Untitled

a guest
Jul 31st, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Rails 3.1 Migrate to PostgreSQL locally
  2. group :development, :test do
  3. gem 'pg'
  4. end
  5. group :production do
  6. gem 'pg'
  7. end
  8.  
  9. Couldn't create database for {"adapter"=>"sqlite3", "database"=>"db/test.sqlite3", "pool"=>5, "timeout"=>5000}
  10. db/development.sqlite3 already exists
  11. rake aborted!
  12. Please install the sqlite3 adapter: `gem install activerecord-sqlite3-adapter` (sqlite3 is not part of the bundle. Add it to Gemfile.)
  13.  
  14. development:
  15. adapter: postgresql
  16. database: cookbook
  17. username: uid
  18. password: pwd
  19. host: localhost
Add Comment
Please, Sign In to add comment