Search, Paging, and "As of" Date #10

Merged
danieljsummers merged 15 commits from search into master 2019-03-21 00:19:02 +00:00
Showing only changes of commit ec7c12290b - Show all commits

3
src/search-sql.txt Normal file
View File

@ -0,0 +1,3 @@
create extension pg_trgm;
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;