debian-mirror-gitlab/app/models/ci/runner_project.rb
2017-08-17 22:00:37 +05:30

11 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