diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2018-08-07 17:37:24 +0200 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2018-08-07 19:51:17 +0200 |
commit | db0d75ea3e533dec746ee75c964ee4951d38761c (patch) | |
tree | 700436e1cdbe323dd2b279e8a8b5ff9cd9152da4 /db | |
parent | 80c47f8eb44d04f6b4f57d58859fbab3a40485a6 (diff) | |
download | gitlab-ce-db0d75ea3e533dec746ee75c964ee4951d38761c.tar.gz |
Remove redundant ci_builds (status) index
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb | 17 | ||||
-rw-r--r-- | db/schema.rb | 3 |
2 files changed, 18 insertions, 2 deletions
diff --git a/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb b/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb new file mode 100644 index 00000000000..f4f7cb6f8ca --- /dev/null +++ b/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb @@ -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 diff --git a/db/schema.rb b/db/schema.rb index 2bef2971f29..7768925a2df 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: 20180726172057) do +ActiveRecord::Schema.define(version: 20180807153545) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -345,7 +345,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 |