mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
PERF: Add index for (action_type,created_at) on
user_actions` table.
Speeds up counting of likes in `About#stats`.
This commit is contained in:
parent
81a1bafe54
commit
ca4c9abec7
@ -0,0 +1,5 @@
|
||||
class AddIndexActionTypeCreatedAtOnUserActions < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_index :user_actions, [:action_type, :created_at]
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user