Only attempt to remove indexes that exist in `CLI::Maintenance` script (#28286)

pull/28316/head
Matt Jankowski 1 year ago committed by GitHub
parent f5d6143aa1
commit 253393f3a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -712,7 +712,7 @@ module Mastodon::CLI
end
def remove_index_if_exists!(table, name)
ActiveRecord::Base.connection.remove_index(table, name: name)
ActiveRecord::Base.connection.remove_index(table, name: name) if ActiveRecord::Base.connection.index_name_exists?(table, name)
rescue ArgumentError, ActiveRecord::StatementInvalid
nil
end

Loading…
Cancel
Save