Fix name in SQL string

This commit is contained in:
Donal McBreen
2025-11-21 16:01:05 +00:00
parent 6f02cb40b1
commit 2199dcc0c8
+1 -1
View File
@@ -14,7 +14,7 @@ class Search::Record::SQLite::Fts < ApplicationRecord
def self.upsert(rowid, title, content)
connection.exec_query(
"INSERT OR REPLACE INTO search_records_fts(rowid, title, content) VALUES (?, ?, ?)",
"Search::Record::SqliteFts Upsert",
"Search::Record::SQLite::Fts Upsert",
[ rowid, title, content ]
)
end