I've encountered information that implies most experienced Rails developers don't use scaffolding. Do most experienced Rails developers even use the generators for Models, Controllers, and Migrations?
For example, as a seasoned Rails developer would I do:
rails g model Post name title content
or
rails g migration Create_Posts
and then modify it with:
  def change
    create_table :posts do |t|
    t.string :name
    t.string :title
    t.text :content
    t.timestamps
  end
and also manually create post.rb
Is using generators a best practice within Rails?
 
     
     
    