6 lines
140 B
Ruby
6 lines
140 B
Ruby
class Element < ApplicationRecord
|
|
attr_accessor :checklist_id
|
|
|
|
belongs_to :report
|
|
has_many :success_criteria, dependent: :destroy
|
|
end
|