mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
add index on user_visits for reports
This commit is contained in:
parent
782dd13e78
commit
c32ea73456
1 changed files with 9 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
class AddReportsIndexToUserVisits < ActiveRecord::Migration
|
||||
def up
|
||||
add_index :user_visits, [:visited_at, :mobile]
|
||||
end
|
||||
|
||||
def down
|
||||
remove_index :user_visits, [:visited_at, :mobile]
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue