One of the things that bothers me in Rails is that scaffolding generates migrations that I don\'t always need.
Is there a way to generate the scaffold without the corre
Use the --skip-migration parameter. For example:
--skip-migration
rails generate scaffold post title:string body:text --skip-migration