DEV Community

Discussion on: Step by Step guide to test Rails ActiveText

Collapse
 
adrienpoly profile image
Adrien Poly

has_rich_text adds a polymorphic link to your table. This means that the rich text content is not stored in the posts table but in a dedicated polymorphic table for rich content.

Therefore in your case, you would need to migrate your content to this new table.