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