Sha256: 7850e9a52f805fa03e7f2bf5ab205cf63190dbe24fda28c2d1f7e14d3fa80bfb
Contents?: true
Size: 289 Bytes
Versions: 27
Compression:
Stored size: 289 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 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
27 entries across 27 versions & 2 rubygems