class Book < ApplicationRecord has_and_belongs_to_many :authors scope :published, -> { where(published: true) } end