sql >> Base de Datos >  >> RDS >> PostgreSQL

¿Cómo configurar Postgresql con el proyecto Rails?

¿Configuró una contraseña para su postgres? usuario?

En tu config/database.yml debe tener sus bases de datos configuradas correctamente:

development:
  adapter: postgresql
  encoding: unicode
  database: your_app_development # name your development app something
  host: localhost
  pool: 5
  username: your_username
  password: your_password # or leave blank if you didn't set a password

test:
  adapter: postgresql
  encoding: unicode
  database: your_app_test
  host: localhost
  pool: 5
  username: your_username
  password: your_password