artists: add is_deleted and is_banned indexes.

This commit is contained in:
evazion
2020-03-06 20:18:06 -06:00
parent ddffffb413
commit f4da0a127d
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
class AddIsDeletedIndexOnArtists < ActiveRecord::Migration[6.0]
def change
add_index :artists, :is_deleted
add_index :artists, :is_banned
end
end