문제

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