Reputation: 3366
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 corresponding migration?
Upvotes: 18
Views: 9953
Reputation: 16888
Use the --skip-migration
parameter. For example:
rails generate scaffold post title:string body:text --skip-migration
Upvotes: 33