Sha256: dcabe70231a3b02f0446b5d505d1b47a52bad79306da68258429dd1717ee2b99
Contents?: true
Size: 271 Bytes
Versions: 29
Compression:
Stored size: 271 Bytes
Contents
# frozen_string_literal: true class Message include Mongoid::Document field :body, type: String field :priority, type: Integer embedded_in :person has_and_belongs_to_many :receivers, class_name: "Person", inverse_of: nil has_one :post, as: :posteable end
Version data entries
29 entries across 29 versions & 1 rubygems