mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-18 15:48:22 +00:00
Only attempt to remove indexes that exist in CLI::Maintenance
script (#28286)
This commit is contained in:
parent
f5d6143aa1
commit
253393f3a8
|
@ -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…
Reference in a new issue