I’m trying to get a handle on rails 2.0. Once upon a time…
script/generate model book
edit migration
t.column :title, :string
t.column :description, :string
rake db:migrate
script/generate scaffold book
this would create a working MVC. Today, rails will not generate a
controller for an existing model. Am I missing something??
I was able to get this to work.
script/generate scaffold book title:string description:string