11 lines
194 B
Ruby
11 lines
194 B
Ruby
|
module Ci
|
||
|
class PipelineVariable < ActiveRecord::Base
|
||
|
extend Ci::Model
|
||
|
include HasVariable
|
||
|
|
||
|
belongs_to :pipeline
|
||
|
|
||
|
validates :key, uniqueness: { scope: :pipeline_id }
|
||
|
end
|
||
|
end
|