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:
authorShinya Maeda <shinya@gitlab.com>2019-04-16 14:56:48 +0300
committerShinya Maeda <shinya@gitlab.com>2019-04-30 19:12:59 +0300
commite51912543c24c2dcf25b2c8d775fc5f57f85e639 (patch)
tree353f3266f1424326f8cbfc417c9ec3b25fd28b7f /db/schema.rb
parenta96e96d5c8829348fed969d00395be93290577d4 (diff)
Add project level config for merge train
We add the option and expose the parameter for frontend work
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5a486b369e3..2e77bbb51e5 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1612,6 +1612,7 @@ ActiveRecord::Schema.define(version: 20190426180107) do
t.integer "project_id", null: false
t.boolean "group_runners_enabled", default: true, null: false
t.boolean "merge_pipelines_enabled"
+ t.boolean "merge_trains_enabled", default: false, null: false
t.index ["project_id"], name: "index_project_ci_cd_settings_on_project_id", unique: true, using: :btree
end