5 lines
121 B
Ruby
5 lines
121 B
Ruby
class Book < ApplicationRecord
|
|
has_and_belongs_to_many :authors
|
|
|
|
scope :published, -> { where(published: true) }
|
|
end
|