9 lines
176 B
Ruby
9 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Report < ApplicationRecord
|
|
has_rich_text :comment_html
|
|
|
|
has_many :elements, dependent: :destroy
|
|
|
|
validates :name, presence: true
|
|
end
|