recruitment/app/models/employee_recommendation.rb

11 lines
205 B
Ruby
Raw Normal View History

class EmployeeRecommendation
include Mongoid::Document
include Mongoid::Timestamps
field :name
field :email
field :info
field :employee_recommendation_token
belongs_to :employee_profile
end