mirror of
https://github.com/mastodon/mastodon.git
synced 2026-09-12 12:25:55 -05:00
Remove redundant index index_keypairs_on_account_id (#40138)
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user