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:
authorAsh McKenzie <amckenzie@gitlab.com>2019-06-17 04:19:47 +0300
committerAsh McKenzie <amckenzie@gitlab.com>2019-06-18 02:26:07 +0300
commita8ae921d99cb187226edfec4b075b0c01e83330a (patch)
tree481036c18b15e7ba3b82c9eb0fff71d3c38515e7 /db/schema.rb
parent30bddd546f117043f2b7389ad06ba5257184c148 (diff)
Add index to events and audit_events tables
Index on created_at, author_id
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index c6186c52699..d1c13f44ab2 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -335,6 +335,7 @@ ActiveRecord::Schema.define(version: 20190613030606) do
t.text "details"
t.datetime "created_at"
t.datetime "updated_at"
+ t.index ["created_at", "author_id"], name: "analytics_index_audit_events_on_created_at_and_author_id", using: :btree
t.index ["entity_id", "entity_type"], name: "index_audit_events_on_entity_id_and_entity_type", using: :btree
end
@@ -1219,6 +1220,7 @@ ActiveRecord::Schema.define(version: 20190613030606) do
t.string "target_type"
t.index ["action"], name: "index_events_on_action", using: :btree
t.index ["author_id", "project_id"], name: "index_events_on_author_id_and_project_id", using: :btree
+ t.index ["created_at", "author_id"], name: "analytics_index_events_on_created_at_and_author_id", using: :btree
t.index ["project_id", "created_at"], name: "index_events_on_project_id_and_created_at", using: :btree
t.index ["project_id", "id"], name: "index_events_on_project_id_and_id", using: :btree
t.index ["target_type", "target_id"], name: "index_events_on_target_type_and_target_id", using: :btree