mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
8 lines
199 B
Ruby
8 lines
199 B
Ruby
class AddUserActionIndex < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :user_actions, :user_id
|
|
add_index :user_actions, :action_type
|
|
add_index :user_actions, :action_id
|
|
end
|
|
end
|