On Sun, Mar 21, 2010 at 5:45 PM, Mike Montagne <[email protected]> wrote:
> iMacMike:pfmpe mikemontagne$ rake db:migrate --trace > Unknown database 'pfmpe_development' > database.yml indicates that this is supposed to be the development > database. But no such file exists in my project directory. What file would you expect? This refers to a database, physical location dependent on your MySQL configuration. > Is this a MySQL server configuration issue? Does anybody understand why > this table is not being created? Perhaps you left out the step where you create it? At least I didn't see it in your post. You can create databases manually through the MySQL CLI console or a number of other tools, or you can run the appropriate rake task. `rake -T` will give you a list of the available tasks. But you *do* have to create it before running your migrations :-) HTH, -- Hassan Schroeder ------------------------ [email protected] twitter: @hassan -- 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.

