summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-06-05 15:06:15 +0000
committerDouwe Maan <douwe@gitlab.com>2018-06-05 15:06:15 +0000
commitedab9360009c6ca30e04c2ad3c2fd68f3aa5c55f (patch)
tree9efee3a24520ea5285cb8ceaf92b0f869ed6c6a6 /db/schema.rb
parentc503429e5e8538649bec02d74963ec0eb8f0cb98 (diff)
parent6ced2f124355ac08b111b4c2ac60ae57e3851ba4 (diff)
downloadgitlab-ce-edab9360009c6ca30e04c2ad3c2fd68f3aa5c55f.tar.gz
Merge branch 'master' into 'rd-44364-deprecate-support-for-dsa-keys'
# Conflicts: # db/schema.rb
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index b14ea5640d4..dc34736c76b 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -451,10 +451,12 @@ ActiveRecord::Schema.define(version: 20180531220618) do
t.integer "config_source"
t.boolean "protected"
t.integer "failure_reason"
+ t.integer "iid"
end
add_index "ci_pipelines", ["auto_canceled_by_id"], name: "index_ci_pipelines_on_auto_canceled_by_id", using: :btree
add_index "ci_pipelines", ["pipeline_schedule_id"], name: "index_ci_pipelines_on_pipeline_schedule_id", using: :btree
+ add_index "ci_pipelines", ["project_id", "iid"], name: "index_ci_pipelines_on_project_id_and_iid", unique: true, where: "(iid IS NOT NULL)", using: :btree
add_index "ci_pipelines", ["project_id", "ref", "status", "id"], name: "index_ci_pipelines_on_project_id_and_ref_and_status_and_id", using: :btree
add_index "ci_pipelines", ["project_id", "sha"], name: "index_ci_pipelines_on_project_id_and_sha", using: :btree
add_index "ci_pipelines", ["project_id"], name: "index_ci_pipelines_on_project_id", using: :btree
@@ -1227,7 +1229,7 @@ ActiveRecord::Schema.define(version: 20180531220618) do
t.boolean "discussion_locked"
t.integer "latest_merge_request_diff_id"
t.string "rebase_commit_sha"
- t.boolean "allow_maintainer_to_push"
+ t.boolean "allow_collaboration"
t.boolean "squash", default: false, null: false
end