2018-01-11 12:21:16 +00:00
|
|
|
class EmployeeRecommendation
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :name
|
|
|
|
field :email
|
|
|
|
field :info
|
|
|
|
field :employee_recommendation_token
|
2018-01-16 12:06:04 +00:00
|
|
|
mount_uploader :file, AssetUploader
|
2018-01-11 12:21:16 +00:00
|
|
|
|
|
|
|
belongs_to :employee_profile
|
|
|
|
end
|