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:
Diffstat (limited to 'db/ci/migrate/20141031141708_add_commit_indicies.rb')
-rw-r--r--db/ci/migrate/20141031141708_add_commit_indicies.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/ci/migrate/20141031141708_add_commit_indicies.rb b/db/ci/migrate/20141031141708_add_commit_indicies.rb
new file mode 100644
index 00000000000..c9c0155e9b7
--- /dev/null
+++ b/db/ci/migrate/20141031141708_add_commit_indicies.rb
@@ -0,0 +1,9 @@
+class AddCommitIndicies < ActiveRecord::Migration
+ def change
+ add_index :commits, :project_id
+ add_index :commits, :sha, length: 6
+ add_index :commits, [:project_id, :sha]
+ add_index :builds, :commit_id
+ add_index :builds, [:project_id, :commit_id]
+ end
+end