Upon running “rake db:migrate”, I’m getting an “database configuration does not specify adapter” error.
Here’s my database.yml:
development:
adapter: postgresql
database: development
username: ##########
password: ##########
host: localhost
pool: 5
timeout: 5000
My Gemfile lists:
gem 'pg'
Figured out what it was. I skyped the database.yml to myself, and it inserted a ton of invisible characters which prevented the YAML from being read.