mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 05:26:17 +02:00
7 lines
171 B
Ruby
7 lines
171 B
Ruby
class AddConcIndexToContact < ActiveRecord::Migration[6.1]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
add_index :contacts, :email, :algorithm => :concurrently
|
|
end
|
|
end
|