mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
bcc80e0ea8
User bookmarks can now be searched by name or post raw content. The q querystring param is hooked up from the Ember router as well.
8 lines
144 B
Ruby
8 lines
144 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddBookmarkNameIndex < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_index :bookmarks, :name
|
|
end
|
|
end
|