2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-08 03:00:20 +10:00
|
|
|
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
|