Photo by <a href="https://unsplash.com/@zacwolff?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Zac Wolff</a> on <a href="https://unsplash.com/photos/rv2ooDQuNuI?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
```ruby class Rental < ApplicationRecord belongs_to :item belongs_to :renter, class_name: 'Person', foreign_key: 'renter_id' belongs_to :checkout, class_name: 'StockChange', foreign_key: 'checkout_id' belongs_to :return, class_name: 'StockChange', foreign_key: 'return_id', optional: true ```