BigW Consortium Gitlab

label_links.rb 402 Bytes
Newer Older
Dmitriy Zaporozhets committed
1 2 3 4 5 6 7 8 9 10 11 12
# == 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
#

13 14 15 16 17 18 19 20
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :label_link do
    label
    target factory: :issue
  end
end