bookstore/app/models/book.rb

6 lines
121 B
Ruby
Raw Permalink Normal View History

2021-03-19 17:31:38 +02:00
class Book < ApplicationRecord
has_and_belongs_to_many :authors
scope :published, -> { where(published: true) }
end