Welcome to mirror list, hosted at ThFree Co, Russian Federation.

label_link.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b94c9c777af3109afe8cb86712063451c2c51dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# == Schema Information
#
# Table name: label_links
#
#  id          :integer          not null, primary key
#  label_id    :integer
#  target_id   :integer
#  target_type :string(255)
#  created_at  :datetime
#  updated_at  :datetime
#

class LabelLink < ActiveRecord::Base
  belongs_to :target, polymorphic: true
  belongs_to :label

  validates :target, presence: true
  validates :label, presence: true
end