artist urls: add index on url column.

This commit is contained in:
evazion
2022-04-03 17:08:36 -05:00
parent 83f5124a5e
commit 70c5332be8
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddURLIndexOnArtistURLs < ActiveRecord::Migration[7.0]
def change
add_index :artist_urls, :url, opclass: :text_pattern_ops
end
end