I have two models sessions and speakers, I need to add multiple speakers to sessions. for that am using has_many belongs_to association
my models are
class Speakers < ActiveRecord::Base has_many :sessions end
class Sessions < ActiveRecord::Base belongs_to :speakers end
I am using activeadmin for this project, how to add multiple ids to speakers_id column in sessions table via check_boxes in activeadmin.
thanks