2015-09-25 12:07:36 +05:30
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: runner_projects
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# runner_id :integer not null
|
|
|
|
# project_id :integer not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
factory :ci_runner_project, class: Ci::RunnerProject do
|
|
|
|
runner_id 1
|
2015-12-23 02:04:40 +05:30
|
|
|
gl_project_id 1
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|