21 lines
636 B
Ruby
21 lines
636 B
Ruby
|
|
module BrittonWeb
|
||
|
|
class Employers < BrittonWebRecord
|
||
|
|
|
||
|
|
# self.table_name = 'employers'
|
||
|
|
|
||
|
|
alias_attribute :id, :id
|
||
|
|
alias_attribute :name, :name
|
||
|
|
alias_attribute :pl_plan_key, :pl_plan_key
|
||
|
|
alias_attribute :plan_id, :plan_id
|
||
|
|
alias_attribute :dental_plan, :dental_plan
|
||
|
|
alias_attribute :single_card_template, :single_card_template
|
||
|
|
alias_attribute :multiple_card_template, :multiple_card_template
|
||
|
|
alias_attribute :logo, :logo
|
||
|
|
alias_attribute :active, :active
|
||
|
|
alias_attribute :broker_id, :broker_id
|
||
|
|
alias_attribute :created_at, :created_at
|
||
|
|
alias_attribute :updated_at, :updated_at
|
||
|
|
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|