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