Rails - ActionText

13 May 25

on installing ActionText a migration is created which creates a table in the database action_text_rich_texts. This is not backed in the usual way by an ActiveRecord model, ActionTextRichText, however.
ActionTextRichText.all
will therefore fail. Use the  namespaced model: 
ActionText::RichText.all