This commit is contained in:
Jorge Manrubia
2025-06-24 10:45:11 +02:00
parent 6059d8bf39
commit e59b7fcd18
3 changed files with 7 additions and 7 deletions
@@ -1,6 +1,6 @@
class AddDescriptionToCardsSearchIndex < ActiveRecord::Migration[8.1]
def change
drop_virtual_table :cards_search_index, "fts5", ["title"]
create_virtual_table :cards_search_index, "fts5", ["title", "description"]
drop_virtual_table :cards_search_index, "fts5", [ "title" ]
create_virtual_table :cards_search_index, "fts5", [ "title", "description" ]
end
end