app/models/action_text/encrypted_rich_text.rb



# frozen_string_literal: true

module ActionText
  class EncryptedRichText < RichText
    self.table_name = "action_text_rich_texts"

    encrypts :body
  end
end