0
0
Fork 0

Add index to backups on user_id column (#25647)

This commit is contained in:
Matt Jankowski 2023-06-30 13:09:03 -04:00 committed by GitHub
parent 78ba12f0bf
commit c47cdf6e17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -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