Added column for as-of date display

This commit is contained in:
Daniel J. Summers
2019-03-16 19:55:02 -05:00
parent ef4f82cf9d
commit 047bc34a5f
9 changed files with 72 additions and 7 deletions

View File

@@ -3,3 +3,4 @@ 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 "AsOfDateDisplay" varchar(1) not null default 'N';