1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-03 09:18:59 +09:00
whippy-edition/db/migrate/20170829215220_remove_status_pins_account_index.rb

7 lines
174 B
Ruby
Raw Normal View History

class RemoveStatusPinsAccountIndex < ActiveRecord::Migration[5.1]
def change
remove_index :status_pins, :account_id
remove_index :status_pins, :status_id
end
end