eggdrop
eggdrop

Reputation: 3366

Is there an option to generate scaffolding without generating migrations?

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

Answers (1)

Tim Sullivan
Tim Sullivan

Reputation: 16888

Use the --skip-migration parameter. For example:

rails generate scaffold post title:string body:text --skip-migration 

Upvotes: 33

Related Questions