blob: 059547e1b56717df30feac37b79d0c850611ead7 (
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
  store_accessor :condition_attributes,
    :transport_mode,
    :transport_submode
end
  |