Remove redundant index

This commit is contained in:
Sean Carroll 2019-08-23 19:46:02 +00:00 committed by Mayra Cabrera
parent 24ff249ded
commit 68ae21d611
3 changed files with 26 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
title: Removed redundant index on releases table
merge_request: 31487
author:
type: removed

View File

@ -0,0 +1,21 @@
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class RemoveRendundantIndexFromReleases < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
disable_ddl_transaction!
def up
remove_concurrent_index :releases, :project_id
end
def down
add_concurrent_index :releases, :project_id
end
end

View File

@ -3015,7 +3015,6 @@ ActiveRecord::Schema.define(version: 2019_08_15_093949) do
t.datetime_with_timezone "released_at", null: false
t.index ["author_id"], name: "index_releases_on_author_id"
t.index ["project_id", "tag"], name: "index_releases_on_project_id_and_tag"
t.index ["project_id"], name: "index_releases_on_project_id"
end
create_table "remote_mirrors", id: :serial, force: :cascade do |t|