Sha256: b1e871a37a213227168c6d0c3378a1bc8f2cf1a05a19656f45e9f5b5d49b42e0
Contents?: true
Size: 380 Bytes
Versions: 18
Compression:
Stored size: 380 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/patients" module Renalware module Patients class Alert < ApplicationRecord include Accountable acts_as_paranoid attr_accessor :urgency # for use in forms validates :patient, presence: true validates :notes, presence: true belongs_to :patient, touch: true end end end
Version data entries
18 entries across 18 versions & 1 rubygems