I am trying to configure my Env to use PostgreSQL with Rails, and I followed the steps for installing PostgreSQL from this article.
It turns out the following error
ATAL: the database "myapp_development" does not exist. Extracted source (around line # 661):
rescue ::PG::Error => error if error.message.include?("does not exist") raise ActiveRecord::NoDatabaseError.new(error.message, error) else raise end
ruby-on-rails postgresql ruby-on-rails-4
Harsha mv
source share