PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Rails:come utilizzare l'ambito per trovare un elemento in una matrice di array

class Event
  scope :mybooking, ->(user_ids) { where(user_id: user_ids) }
end

Ora è possibile fare nel controller:

reservations = [["2","3"], ["3","1"], ["6", "1"]]
Event.mybooking(reservations.map(&:first))