Remove redundant index index_keypairs_on_account_id (#40138)

This commit is contained in:
Claire
2026-08-13 08:26:20 +00:00
committed by GitHub
parent 3cc36b98c0
commit 368b4abfcf
2 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
class RemoveIndexKeypairsOnAccountId < ActiveRecord::Migration[8.1]
disable_ddl_transaction!
def change
remove_index :keypairs, :account_id, algorithm: :concurrently
end
end

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.1].define(version: 2026_08_05_130216) do
ActiveRecord::Schema[8.1].define(version: 2026_08_12_154114) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@@ -728,7 +728,6 @@ ActiveRecord::Schema[8.1].define(version: 2026_08_05_130216) do
t.datetime "updated_at", null: false
t.string "uri"
t.index ["account_id", "local_fragment"], name: "index_keypairs_on_account_id_and_local_fragment", unique: true
t.index ["account_id"], name: "index_keypairs_on_account_id"
t.index ["uri"], name: "index_keypairs_on_uri", unique: true
end