Matt Elhotiby
Matt Elhotiby

Reputation: 44066

Creating a new rails application in rails 3

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

Answers (2)

Kevin Sylvestre
Kevin Sylvestre

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

codykrieger
codykrieger

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

Related Questions