summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-08-29 01:52:53 +0000
committerStan Hu <stanhu@gmail.com>2019-08-29 01:52:53 +0000
commit87aa5e7ad25bf576dfdb87ddc783c9f23099b6e7 (patch)
treefd07f390269a38ad420f376c02308f573399d7a9 /db/schema.rb
parentb34120336d33e57d9817559f82771f8da4f5f2b3 (diff)
parent3ed555f3c980ef7c21efd17cabc06a8037643787 (diff)
downloadgitlab-ce-87aa5e7ad25bf576dfdb87ddc783c9f23099b6e7.tar.gz
Merge branch 'cluster_deployments' into 'master'
Add index to improve query performance See merge request gitlab-org/gitlab-ce!31988
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 454ea939a6f..54774b0a65b 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1146,7 +1146,7 @@ ActiveRecord::Schema.define(version: 2019_08_28_083843) do
t.integer "status", limit: 2, null: false
t.datetime_with_timezone "finished_at"
t.integer "cluster_id"
- t.index ["cluster_id"], name: "index_deployments_on_cluster_id"
+ t.index ["cluster_id", "status"], name: "index_deployments_on_cluster_id_and_status"
t.index ["created_at"], name: "index_deployments_on_created_at"
t.index ["deployable_type", "deployable_id"], name: "index_deployments_on_deployable_type_and_deployable_id"
t.index ["environment_id", "id"], name: "index_deployments_on_environment_id_and_id"