mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:30:16 +08:00
10 lines
250 B
Ruby
10 lines
250 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddUserActionsAllIndex < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :user_actions,
|
|
%i[user_id created_at action_type],
|
|
name: "idx_user_actions_speed_up_user_all"
|
|
end
|
|
end
|