From 590d40c0e6fa65ca975137db83073f6dc128e5d0 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Wed, 25 Jun 2025 11:42:02 +0200 Subject: [PATCH] Just use drop table --- .../20250624055720_add_description_to_cards_search_index.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20250624055720_add_description_to_cards_search_index.rb b/db/migrate/20250624055720_add_description_to_cards_search_index.rb index a2b22b9cc..f63e50b6a 100644 --- a/db/migrate/20250624055720_add_description_to_cards_search_index.rb +++ b/db/migrate/20250624055720_add_description_to_cards_search_index.rb @@ -1,6 +1,6 @@ class AddDescriptionToCardsSearchIndex < ActiveRecord::Migration[8.1] def change - drop_virtual_table :cards_search_index, "fts5", [ "title" ] + drop_table :cards_search_index create_virtual_table :cards_search_index, "fts5", [ "title", "description" ] end end