This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/migrations/20210716071454-search-index-previousTitles.js
Saumya Pandey 0bc609634c
fix: Allow searching of previous document titles (#2326)
* Add migrations

* Handle previousTitles when titles is updated

* Add necessary test cases

* Use previous title while searching

* Rewrite logic to update previousTitles in beforeSave hook

* Update weights

* Update test to match new rank order

* Add tooltip to inform user on document

* Add code comment

* Remove previous title tooltip

* fix: Remove unused string, add model tests

Co-authored-by: Tom Moor <tom.moor@gmail.com>
2021-07-20 10:35:29 -07:00

34 lines
1.0 KiB
JavaScript

'use strict';
module.exports = {
up: async (queryInterface, Sequelize) => {
const searchDocument = `
CREATE OR REPLACE FUNCTION documents_search_trigger() RETURNS trigger AS $$
begin
new."searchVector" :=
setweight(to_tsvector('english', coalesce(new.title, '')),'A') ||
setweight(to_tsvector('english', coalesce(array_to_string(new."previousTitles", ' , '),'')),'C') ||
setweight(to_tsvector('english', coalesce(new.text, '')), 'B');
return new;
end
$$ LANGUAGE plpgsql;
`;
await queryInterface.sequelize.query(searchDocument);
},
down: async (queryInterface, Sequelize) => {
const searchDocument = `
CREATE OR REPLACE FUNCTION documents_search_trigger() RETURNS trigger AS $$
begin
new."searchVector" :=
setweight(to_tsvector('english', coalesce(new.title, '')),'A') ||
setweight(to_tsvector('english', coalesce(new.text, '')), 'C');
return new;
end
$$ LANGUAGE plpgsql;
`;
await queryInterface.sequelize.query(searchDocument);
}
};