© 2026 Hedgehog Software, LLC
generated
alter table books add column fts tsvector generated always as (to_tsvector('english', description || ' ' || title)) stored; create index books_fts on books using gin (fts); -- generate the index select id, fts from books;
books
author_id
authors