Added requestor field to search

This commit is contained in:
Daniel J. Summers
2019-03-16 09:15:50 -05:00
parent 8b46a670fa
commit 215325f6fb
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
create extension pg_trgm;
set search_path=pt,public;
create index "IX_PrayerRequest_Requestor_TRGM" on "PrayerRequest" using GIN (COALESCE("Requestor", '') gin_trgm_ops);
create index "IX_PrayerRequest_Text_TRGM" on "PrayerRequest" using GIN ("Text" gin_trgm_ops);
alter table "ListPreference" add column "PageSize" int not null default 100;
alter table "ListPreference" add column "PageSize" int not null default 100;