forked from Gitlink/forgeplus
17 lines
426 B
Ruby
17 lines
426 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: waitlists
|
|
#
|
|
# id :integer not null, primary key
|
|
# applicant_id :string(255)
|
|
# integer :string(255)
|
|
# reviewer_id :string(255)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Waitlist < ApplicationRecord
|
|
belongs_to :applicant, class_name: 'User'
|
|
belongs_to :reviewer, class_name: 'User', optional: true
|
|
end
|