diff options
author | Robert Speicher <robert@gitlab.com> | 2015-10-27 11:22:10 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2015-10-27 11:22:10 +0000 |
commit | d974803ccc3572eadde72fffca7244cd1b26a6c9 (patch) | |
tree | 15488b6a94f0e93df5b8637df2845c9cb4854ac1 | |
parent | da7349a0e232e71b7c2438fc90c14167d59711c4 (diff) | |
parent | 01c7769c7529ca6d4036220052d78fc7284262f7 (diff) | |
download | gitlab-ce-d974803ccc3572eadde72fffca7244cd1b26a6c9.tar.gz |
Merge branch 'add-project-path-index' into 'master'
Add projects path index
Fixes performance regression introduced by !1649
See merge request !1692
-rw-r--r-- | db/migrate/20151026182941_add_project_path_index.rb | 9 | ||||
-rw-r--r-- | db/schema.rb | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/db/migrate/20151026182941_add_project_path_index.rb b/db/migrate/20151026182941_add_project_path_index.rb new file mode 100644 index 00000000000..a62fe199d70 --- /dev/null +++ b/db/migrate/20151026182941_add_project_path_index.rb @@ -0,0 +1,9 @@ +class AddProjectPathIndex < ActiveRecord::Migration + def up + add_index :projects, :path + end + + def down + remove_index :projects, :path + end +end diff --git a/db/schema.rb b/db/schema.rb index 0fe113325fa..4bde9f0b748 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20151023144219) do +ActiveRecord::Schema.define(version: 20151026182941) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -624,6 +624,7 @@ ActiveRecord::Schema.define(version: 20151023144219) do add_index "projects", ["creator_id"], name: "index_projects_on_creator_id", using: :btree add_index "projects", ["last_activity_at"], name: "index_projects_on_last_activity_at", using: :btree add_index "projects", ["namespace_id"], name: "index_projects_on_namespace_id", using: :btree + add_index "projects", ["path"], name: "index_projects_on_path", using: :btree add_index "projects", ["star_count"], name: "index_projects_on_star_count", using: :btree create_table "protected_branches", force: true do |t| |