notebook/app/models/documents/document_analysis.rb
2019-02-24 20:21:01 -06:00

11 lines
202 B
Ruby

class DocumentAnalysis < ApplicationRecord
belongs_to :document
serialize :words_per_sentence, Array
serialize :n_syllable_words, Hash
def complete?
self.completed_at.present?
end
end