17 lines
463 B
Ruby
17 lines
463 B
Ruby
module BrittonWeb
|
|
class NetworkLogos < BrittonWebRecord
|
|
|
|
self.table_name = 'network_logos'
|
|
|
|
alias_attribute :id, :id
|
|
alias_attribute :net_logo, :net_logo
|
|
alias_attribute :exception_type, :exception_type
|
|
alias_attribute :exception_value, :exception_value
|
|
alias_attribute :default, :default
|
|
alias_attribute :employer_id, :employer_id
|
|
alias_attribute :created_at, :created_at
|
|
alias_attribute :updated_at, :updated_at
|
|
|
|
|
|
end
|
|
end |