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