While working with ActiveRecord I have a table which stores a serialized array of participant usernames for each row in one field. Is there an easy way to search for all rows who contain a specific user?
class Thing < ActiveRecord::Base
serialize :participants
end
I realise I could just make a new linked table for the participants, but I feel like that would increase my overhead unnecessarily -- what do you think?