mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
10 lines
257 B
Ruby
10 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddNotificationsAndFavouritesIndices < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_index :notifications, [:activity_id, :activity_type]
|
|
add_index :accounts, :url
|
|
add_index :favourites, :status_id
|
|
end
|
|
end
|