Sha256: 0196ec7136e8c9133eaf6611a47b30dfffe34f6f982a9732be83d434c04c6803
Contents?: true
Size: 540 Bytes
Versions: 28
Compression:
Stored size: 540 Bytes
Contents
require_dependency "renalware/transplants" require "document/base" module Renalware module Transplants class DonorFollowup < ApplicationRecord belongs_to :operation, class_name: "DonorOperation", foreign_key: "operation_id", touch: true has_paper_trail class_name: "Renalware::Transplants::Version" validates :last_seen_on, timeliness: { type: :date, allow_blank: true } validates :dead_on, timeliness: { type: :date, allow_blank: true } end end end
Version data entries
28 entries across 28 versions & 1 rubygems