foalfetch/app/models/story.rb

10 lines
229 B
Ruby
Raw Normal View History

class Story < ApplicationRecord
include FancySearchable::Searchable
include Indexable
belongs_to :author
has_many :chapters
has_many :taggings, validate: false
has_many :tags, through: :taggings, validate: false
end