Topic: multiple users id
I am building a messages model.
In my model i have a user_id (for whom the message is for)
but some one else could pick up the message so i added a pickup_user_id
now when i do
Message.last.useri get all the user info
but how can i map pickup_user_id to the same way. so i can go
Message.last.pickup_userand get the user info?
thanks