mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Fix migration error handling (#17991)
This commit is contained in:
parent
5f0fc639da
commit
cb45c04d26
@ -812,7 +812,7 @@ module Mastodon
|
||||
# removing the old one
|
||||
def update_index(table_name, index_name, columns, **index_options)
|
||||
if index_name_exists?(table_name, "#{index_name}_new") && index_name_exists?(table_name, index_name)
|
||||
remove_index table_name, "#{index_name}_new"
|
||||
remove_index table_name, name: "#{index_name}_new"
|
||||
elsif index_name_exists?(table_name, "#{index_name}_new")
|
||||
# Very unlikely case where the script has been interrupted during/after removal but before renaming
|
||||
rename_index table_name, "#{index_name}_new", index_name
|
||||
|
Loading…
Reference in New Issue
Block a user