mirror of https://github.com/mastodon/mastodon
Add effective index to subscriptions (#2885)
parent
ca05bfaac7
commit
d3704fdb09
@ -0,0 +1,11 @@
|
|||||||
|
class OptimizeIndexSubscriptions < ActiveRecord::Migration[5.0]
|
||||||
|
def up
|
||||||
|
add_index :subscriptions, [:account_id, :callback_url], unique: true
|
||||||
|
remove_index :subscriptions, [:callback_url, :account_id]
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
add_index :subscriptions, [:callback_url, :account_id], unique: true
|
||||||
|
remove_index :subscriptions, [:account_id, :callback_url]
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue