In my rails app, Comment belongs_to Page (and stores a page_id), while Page has_many comments. But now I want Comment to belong to another model as well, say Picture. The Railscasts on Polymorphic associations discusses how to initially set up Commentable as the intermediary between Comment and the models it will belong_to.
However, I already have an existing Comment - Page setup. How do I migrate the database column and data over to a new Commentable setup so nothing breaks?
Try this:
Rename the column
page_id
tocommentable_id
and create an additional column calledcommentable_type
and set it as default: 'page' so that the previous data in table is appropriate.The migrations should be:
1) Migration for renaming page_id to commentable_id
2) Migration for adding commentable_type
You will then need to alter the controller code for comments as well as the views. Hope that helps :)