I have a model User and a model Thing. A User can own zero or more Things. A Thing may be owned by zero or more Users. Ordinarily I would add in a third table Thing_Ownership linking Users to Things but I would like to take advantage of SQLAlchemy's backref feature so that if I had a User instance george I could call george.inventory to get a list of Things that belong to george.
What is the best way to go about this, or should I just add a third model and implement User.inventory as a search through a third Thing_Ownership model for relevant relationships?