I have a model User that can create Posts
User has_many :posts Post belongs_to :user
However, I want to also allow users to save posts as boo
I did something similar to previous comments here but successfully used inverse_of to differentiate users and 'post authors':
inverse_of
User has_many :authored_posts, class_name: 'Post', inverse_of: 'author'