Sha256: d4b4111729e72ac7edcdc6f51e48f2da541d972126c75533da9c1c6109b754da
Contents?: true
Size: 263 Bytes
Versions: 12
Compression:
Stored size: 263 Bytes
Contents
# frozen_string_literal: true class Chapter < ActiveRecord::Base has_many :sections, dependent: :destroy has_many :paragraphs, through: :sections has_many :quotations, dependent: :destroy has_many :citations, through: :quotations has_paper_trail end
Version data entries
12 entries across 12 versions & 1 rubygems