You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
329 B
10 lines
329 B
class RemoveMentionsStatusIdIndex < ActiveRecord::Migration[6.1]
|
|
def up
|
|
remove_index :mentions, name: :mentions_status_id_index if index_exists?(:mentions, :status_id, name: :mentions_status_id_index)
|
|
end
|
|
|
|
def down
|
|
# As this index should not exist and is a duplicate of another index, do not re-create it
|
|
end
|
|
end
|