pipeline_schedule_variable.rb 228 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 module Ci class PipelineScheduleVariable < ActiveRecord::Base extend Gitlab::Ci::Model include HasVariable belongs_to :pipeline_schedule validates :key, uniqueness: { scope: :pipeline_schedule_id } end end