I have a User model that has many fights. Fight belongs to User.
There are two foreign keys in the fight table that reference back to the user PK -- challenger_id and challengee_id.
The trick is how do I write the has_many association on the User model so that it returns fights where user_id = challenger_id or challengee_id?