Execute raw SQL to see if this is making production crash

This commit is contained in:
Jorge Manrubia
2025-06-25 11:46:29 +02:00
parent 590d40c0e6
commit b54ab90c09
@@ -1,6 +1,8 @@
class AddDescriptionToCardsSearchIndex < ActiveRecord::Migration[8.1]
def change
drop_table :cards_search_index
execute <<~SQL
DROP TABLE cards_search_index;
SQL
create_virtual_table :cards_search_index, "fts5", [ "title", "description" ]
end
end