mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 17:25:34 +08:00
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.
7 lines
144 B
Ruby
Vendored
7 lines
144 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AddBookmarkNameIndex < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_index :bookmarks, :name
|
|
end
|
|
end
|