Sha256: 303c08982d859787499ac15c92e342e03bf84974ff927374dfecc9b53819f063
Contents?: true
Size: 360 Bytes
Versions: 62
Compression:
Stored size: 360 Bytes
Contents
module Workarea class Comment include ApplicationDocument field :author_id, type: String field :body, type: String field :viewed_by_ids, type: Array, default: [] validates :body, presence: true belongs_to :commentable, polymorphic: true, index: true default_scope -> { asc(:created_at) } index({ created_at: 1 }) end end
Version data entries
62 entries across 62 versions & 1 rubygems