Reputation: 44066
in the previous rails versions you ran
rail whatevertheappsname -d mysql
what is the new way and how do you generate scaffolds and controllers/migratations ext..
Upvotes: 0
Views: 81
Reputation: 38012
Also, might be worth checking out: http://railscasts.com/. The last few episodes have been dedicated to switching to Rails 3 and are very helpful.
Upvotes: 0
Reputation: 1780
You want:
rails new whatevertheappsname -d mysql
Generation of scaffolds/etc. is like this:
rails generate scaffold blah name:string content:text ...
rails generate migration add_field_to_blah ...
Hope that helps!
Upvotes: 2