Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-05-02 10:50:52 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-05-15 09:47:24 +0300
commit45f66c8021704276cb5ddf8831606ced71e955e9 (patch)
treed6da313f62fba6231b555d1c8c8aad74bbd0070b /db/schema.rb
parent133d2bb40a6c8516a8c8c487f347fa99bd7e907c (diff)
Make auto-cancelling pending pipelines on by default
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 65eaccf766a..e164347a054 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -986,7 +986,7 @@ ActiveRecord::Schema.define(version: 20170508190732) do
t.text "description_html"
t.boolean "only_allow_merge_if_all_discussions_are_resolved"
t.boolean "printing_merge_request_link_enabled", default: true, null: false
- t.integer "auto_cancel_pending_pipelines", default: 0, null: false
+ t.integer "auto_cancel_pending_pipelines", default: 1, null: false
t.string "import_jid"
t.integer "cached_markdown_version"
t.datetime "last_repository_updated_at"