> I managed to get rake db:create to work, it requires the creation of an > application with the -d postgresql argument. Nevertheless, it throws a > strange message saying that the database already exists. I will move onwards > with the tutorial to see if it really works.
Yes: to create a postgresql based application, you need to use the "-d postgresql" argument, if you forgot it, just open the Gemfile and add the instruction "gem 'pg'" instead of "gem 'sqlite3'" and update the bundle with the command-line "bundle update". I'm using postgresql 9.1 on ubuntu 11.04 with rails 3.1, and everything's good for me. HTH, Maz. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

