5 lines
110 B
Ruby
5 lines
110 B
Ruby
class Report < ApplicationRecord
|
|
has_many :elements, dependent: :destroy
|
|
|
|
has_rich_text :comment_html
|
|
end
|