10 lines
202 B
Ruby
10 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
|