mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
10 lines
256 B
Ruby
10 lines
256 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddRecentSearches < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :user_options, :oldest_search_log_date, :datetime
|
|
|
|
add_index :search_logs, %i[user_id created_at], where: "user_id IS NOT NULL"
|
|
end
|
|
end
|