Fix forgotten unconfirmed_email migration file (#25702)

lolsob-rspec
Claire 2023-07-04 11:25:29 +02:00 committed by GitHub
parent f3ca8aede9
commit 2c31ac0c39
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# frozen_string_literal: true
class AddIndexUserOnUnconfirmedEmail < ActiveRecord::Migration[6.1]
disable_ddl_transaction!
def change
add_index :users, :unconfirmed_email, where: 'unconfirmed_email IS NOT NULL', algorithm: :concurrently
end
end