summaryrefslogtreecommitdiff
path: root/rvh/app/models/employee.rb
blob: 3a31c17d5679db7c41522b1239efc15e7f9d2d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Employee < ApplicationRecord
  belongs_to :account
  has_many :treatments
  attribute :qualifications, :string, array: true
end

class Nurse < Employee
end

class Physician < Employee
end

class Technician < Employee
end