gitlab-org--gitlab-foss/spec/factories/forked_project_links.rb

18 lines
486 B
Ruby
Raw Normal View History

2013-06-19 12:40:33 +00:00
# == Schema Information
#
# Table name: forked_project_links
#
# id :integer not null, primary key
# forked_to_project_id :integer not null
# forked_from_project_id :integer not null
# created_at :datetime
# updated_at :datetime
2013-06-19 12:40:33 +00:00
#
FactoryGirl.define do
factory :forked_project_link do
association :forked_to_project, factory: :project
association :forked_from_project, factory: :project
end
end