Merge branch 'ci-builds-status-index' into 'master'
Remove redundant ci_builds (status) index See merge request gitlab-org/gitlab-ce!21070
This commit is contained in:
commit
6f21652f0b
3 changed files with 23 additions and 2 deletions
5
changelogs/unreleased/ci-builds-status-index.yml
Normal file
5
changelogs/unreleased/ci-builds-status-index.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Remove redundant ci_builds (status) index
|
||||
merge_request: 21070
|
||||
author:
|
||||
type: performance
|
|
@ -0,0 +1,17 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class RemoveRedundantStatusIndexOnCiBuilds < ActiveRecord::Migration
|
||||
include Gitlab::Database::MigrationHelpers
|
||||
|
||||
DOWNTIME = false
|
||||
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
remove_concurrent_index :ci_builds, :status
|
||||
end
|
||||
|
||||
def down
|
||||
add_concurrent_index :ci_builds, :status
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20180726172057) do
|
||||
ActiveRecord::Schema.define(version: 20180807153545) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -346,7 +346,6 @@ ActiveRecord::Schema.define(version: 20180726172057) do
|
|||
add_index "ci_builds", ["stage_id", "stage_idx"], name: "tmp_build_stage_position_index", where: "(stage_idx IS NOT NULL)", using: :btree
|
||||
add_index "ci_builds", ["stage_id"], name: "index_ci_builds_on_stage_id", using: :btree
|
||||
add_index "ci_builds", ["status", "type", "runner_id"], name: "index_ci_builds_on_status_and_type_and_runner_id", using: :btree
|
||||
add_index "ci_builds", ["status"], name: "index_ci_builds_on_status", using: :btree
|
||||
add_index "ci_builds", ["token"], name: "index_ci_builds_on_token", unique: true, using: :btree
|
||||
add_index "ci_builds", ["updated_at"], name: "index_ci_builds_on_updated_at", using: :btree
|
||||
add_index "ci_builds", ["user_id"], name: "index_ci_builds_on_user_id", using: :btree
|
||||
|
|
Loading…
Reference in a new issue