summaryrefslogtreecommitdiff
path: root/app/models/ci/pipeline_variable.rb
blob: 00b419c3efa1d0ebac088a6b9a45cfff529edccd (plain)
1
2
3
4
5
6
7
8
9
10
module Ci
  class PipelineVariable < ActiveRecord::Base
    extend Ci::Model
    include HasVariable

    belongs_to :pipeline

    validates :key, uniqueness: { scope: :pipeline_id }
  end
end