Additional schema updates.

This commit is contained in:
Patrick Fic
2023-08-23 09:41:01 -07:00
parent 7c6693a959
commit 94bc2fff43
6 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1 @@
DROP INDEX IF EXISTS "public"."notifications_bodyshopid";

View File

@@ -0,0 +1,2 @@
CREATE INDEX "notifications_bodyshopid" on
"public"."notifications" using btree ("bodyshopid");

View File

@@ -0,0 +1 @@
DROP INDEX IF EXISTS "public"."notifications_accepted_at";

View File

@@ -0,0 +1,2 @@
CREATE INDEX "notifications_accepted_at" on
"public"."notifications" using btree ("acceptedat");

View File

@@ -0,0 +1 @@
DROP INDEX IF EXISTS "public"."notifications_effectivedate";

View File

@@ -0,0 +1,2 @@
CREATE INDEX "notifications_effectivedate" on
"public"."notifications" using btree ("effectivedate");