Add index to backups on user_id
column (#25647)
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddIndexBackupsOnUserId < ActiveRecord::Migration[6.1]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def change
|
||||
add_index :backups, :user_id, algorithm: :concurrently
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user