Files
sx-fc/app/models/commissioner.rb
2017-08-23 18:14:31 +06:30

7 lines
215 B
Ruby

class Commissioner < ApplicationRecord
belongs_to :employee, foreign_key: 'emp_id'
belongs_to :commission, foreign_key: 'commission_type'
has_many :in_juties
scope :active, -> { where(is_active: true) }
end