diff options
author | Shinya Maeda <shinya@gitlab.com> | 2019-04-16 18:56:48 +0700 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2019-04-30 23:12:59 +0700 |
commit | e51912543c24c2dcf25b2c8d775fc5f57f85e639 (patch) | |
tree | 353f3266f1424326f8cbfc417c9ec3b25fd28b7f /db/schema.rb | |
parent | a96e96d5c8829348fed969d00395be93290577d4 (diff) | |
download | gitlab-ce-e51912543c24c2dcf25b2c8d775fc5f57f85e639.tar.gz |
Add project level config for merge trainadd-project-level-config-for-merge-train-ce
We add the option and expose the parameter for frontend work
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 1 |
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 |