8 lines
175 B
Ruby
8 lines
175 B
Ruby
class Element < ApplicationRecord
|
|
attr_accessor :checklist_id
|
|
|
|
has_rich_text :description_html
|
|
|
|
belongs_to :report
|
|
has_many :success_criteria, dependent: :destroy
|
|
end
|