10 lines
252 B
Ruby
10 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Report < ApplicationRecord
|
|
has_many :pages, -> { order(:position) }, dependent: :destroy
|
|
has_many :elements, through: :pages, dependent: :destroy
|
|
has_rich_text :comment
|
|
|
|
|
|
validates :name, presence: true
|
|
end
|