I have three tables
USER
user_id,name
EVENT
event_id, name,desc
PARTICIPATION
id, type
1 yes
2 no
3 maybe
I want to handle relationship among these in table user_event_participation
id , user_id,event_id,participation_id
1 1 1 3
How can I do in redbeans