Sha256: 7ef73c9ba57758f8ba5bbfc5b173caa61e7f80441e2361114ee530c7d114dd15
Contents?: true
Size: 299 Bytes
Versions: 27
Compression:
Stored size: 299 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Patient include Mongoid::Document field :title, type: String store_in collection: "inpatient" embeds_many :addresses, as: :addressable embeds_one :email embeds_one :name, as: :namable validates_presence_of :title, on: :create end
Version data entries
27 entries across 27 versions & 2 rubygems