shared: migrations: Add 4.sql: Begin trigram index

This commit is contained in:
Albert S. 2022-10-18 16:04:00 +02:00
부모 3022bbdfb5
커밋 45659cdc59
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제

3
shared/migrations/4.sql Normal file
파일 보기

@ -0,0 +1,3 @@
CREATE VIRTUAL TABLE fts_trigram USING fts5(content, content='',tokenize="trigram");
ALTER TABLE content ADD COLUMN fts_trigramid integer;
CREATE INDEX content_fts_trigramid ON content (fts_trigramid);

파일 보기

@ -3,5 +3,6 @@
<file>1.sql</file>
<file>2.sql</file>
<file>3.sql</file>
<file>4.sql</file>
</qresource>
</RCC>