gitlab-org--gitlab-foss/app/models/ci/runner_project.rb
2017-03-17 23:06:11 +00:00

10 lines
194 B
Ruby

module Ci
class RunnerProject < ActiveRecord::Base
extend Ci::Model
belongs_to :runner
belongs_to :project
validates :runner_id, uniqueness: { scope: :project_id }
end
end