letterbox/server/migrations/20250117225159_strip-html-index.down.sql

6 lines
152 B
SQL

-- Add down migration script here
DROP INDEX post_summary_idx;
CREATE INDEX post_summary_idx ON post USING gin (
to_tsvector('english', summary)
);