7 lines
145 B
Ruby
7 lines
145 B
Ruby
class Report < ApplicationRecord
|
|
has_rich_text :comment_html
|
|
|
|
has_many :elements, dependent: :destroy
|
|
|
|
validates :name, presence: true
|
|
end
|