I have a live site that has many Book models. I've recently added a Settings model that belongs_to each Book.
Now when I'm writing code to use the book.settings method, how do I avoid checking ‘book.settings.nil?’ or doing ’book.settings || book.create_settings’ in every call? The settings model has some defaults I can use.