class IdentityCheck
Schema Information
Table name: identity_checks
id :bigint not null, primary key
confirmed_by_other_name :string default(""), not null
confirmed_by_other_relationship :string default(""), not null
confirmed_by_patient :boolean not null
created_at :datetime not null
updated_at :datetime not null
vaccination_record_id :bigint not null
Indexes
index_identity_checks_on_vaccination_record_id (vaccination_record_id)
Foreign Keys
fk_rails_... (vaccination_record_id => vaccination_records.id) ON DELETE => cascade
Public Instance Methods
Source
# File app/models/identity_check.rb, line 41 def confirmed_by_other? = !confirmed_by_patient end