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

11 lines
202 B
Ruby

module Ci
class PipelineVariable < ActiveRecord::Base
extend Gitlab::Ci::Model
include HasVariable
belongs_to :pipeline
validates :key, uniqueness: { scope: :pipeline_id }
end
end