mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-19 09:36:47 +10:00
19 lines
406 B
Ruby
19 lines
406 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: approvers
|
|
#
|
|
# id :integer not null, primary key
|
|
# target_id :integer not null
|
|
# target_type :string(255)
|
|
# user_id :integer not null
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
#
|
|
|
|
class Approver < ActiveRecord::Base
|
|
belongs_to :target, polymorphic: true
|
|
belongs_to :user
|
|
|
|
validates :user, presence: true
|
|
end
|