debian-mirror-gitlab/app/models/ci/runner_project.rb
2018-03-17 18:26:18 +05:30

11 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