Ecco i passaggi che ho seguito:
Installa PostgreSQL e il pacchetto di sviluppo
$ sudo apt-get install postgresql
$ sudo apt-get install libpq-dev
Configura un utente uguale al mio login Ubuntu
$ sudo su postgres -c psql
postgres=# CREATE ROLE <username> SUPERUSER LOGIN;
postgres=# \q
Modifica Gemfile
# Remove gem 'sqlite3'
gem 'pg'
Modifica database.yml
nella directory dell'app
development:
adapter: postgresql
encoding: unicode
database: appname_development
pool: 5
timeout: 5000
username: <username>
password:
test:
adapter: postgresql
encoding: unicode
database: appname_test
pool: 5
timeout: 5000
username: <username>
password:
Esegui installazione bundle
$ bundle install
Crea database e migrazioni
$ rake db:create:all
$ rake db:migrate
Ecco le fonti che ho usato per aiutare:
http://mrfrosti.com/2011/11/postgresql-for-ruby-on-rails-on-ubuntu/
http://railscasts.com /episodes/342-migrazione-a-postgresql
https://devcenter.heroku.com/articles/local-postgresql