I want to add an attribute to a model I've created within a Refinery CMS engine. I know I could do the following:

  1. rails generate migration AddPartNumberToProducts part_number:string
  2. Manually move the migration file from db/migrate to vendor/extensions/products/db/migrate

But is there a command to generate the migration into the correct folder in the first place?

Thanks!

有帮助吗?

解决方案

The method I have outlined above is correct, according to @parndt (the lead developer of the Refinery project).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top