summaryrefslogtreecommitdiff
path: root/app/models/ci/pipeline_schedule_variable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/pipeline_schedule_variable.rb')
-rw-r--r--app/models/ci/pipeline_schedule_variable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/pipeline_schedule_variable.rb b/app/models/ci/pipeline_schedule_variable.rb
index 718ed14edeb..00251ea06fd 100644
--- a/app/models/ci/pipeline_schedule_variable.rb
+++ b/app/models/ci/pipeline_schedule_variable.rb
@@ -9,6 +9,6 @@ module Ci
alias_attribute :secret_value, :value
- validates :key, uniqueness: { scope: :pipeline_schedule_id }
+ validates :key, presence: true, uniqueness: { scope: :pipeline_schedule_id }
end
end