mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 20:33:14 +08:00
7 lines
166 B
Ruby
7 lines
166 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexToTopicViewItems < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :topic_views, %i[user_id viewed_at]
|
|
end
|
|
end
|