gitlab-org--gitlab-foss/app/models/ci/runner_project.rb
2017-09-12 22:32:01 +03:00

10 lines
202 B
Ruby

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