blob: 05240b4283a3a7e22d724afb6ce2b9d0ae96b0a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class ComplianceCheckBlock < ActiveRecord::Base
include StifTransportModeEnumerations
include StifTransportSubmodeEnumerations
belongs_to :compliance_check_set
has_many :compliance_checks
hstore_accessor :condition_attributes,
transport_mode: :string,
transport_submode: :string
end
|