I want to be able to use two columns on one table to define a relationship. So using a task app as an example.
Attempt 1:
class Use
Since Rails 5 you can also do that which is the ActiveRecord safer way:
def tasks Task.where(owner: self).or(Task.where(assignee: self)) end