I'm using multiple rich text fields in my form on a rails 6 app, but only the first field is storing in the database the remaining fields are not showing on the db at all .
module.rb
has_rich_text :content
has_rich_text :references
has_rich_text :footnotes
_form.html.erb
f.rich_text_area :content
f.rich_text_area :references
f.rich_text_area :footnotes
controller.rb
params.require... :content, :references, :footnotes...