Additional hasura migrations.

This commit is contained in:
Patrick Fic
2023-08-15 09:32:56 -07:00
parent 85ff027c5c
commit 686bcacbad
11 changed files with 24 additions and 0 deletions

View File

@@ -113,5 +113,9 @@
"title": "Release Notes for 1.1.2",
"date": "04/12/2023",
"notes": "Bug Fixes:\r\nResolved an issue where the incorrect ruleset could apply to a job on first import."
} ,"1.1.3": {
"title": "Release Notes for 1.1.3",
"date": "08/15/2023",
"notes": "Bug Fixes:\r\n- Added additional SUV and Truck models.\r\n- Searches must now be at least 4 characters to prevent long running searches.\r\n- Added right click context menu."
}
}

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1,3 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- CREATE EXTENSION pg_trgm;

View File

@@ -0,0 +1 @@
CREATE EXTENSION pg_trgm;

View File

@@ -0,0 +1,5 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- CREATE INDEX jobs_gin_ownr_fn ON jobs USING gin (ownr_fn gin_trgm_ops);
-- CREATE INDEX jobs_gin_ownr_ln ON jobs USING gin (ownr_ln gin_trgm_ops);
-- CREATE INDEX jobs_gin_clm_no ON jobs USING gin (clm_no gin_trgm_ops);

View File

@@ -0,0 +1,3 @@
CREATE INDEX jobs_gin_ownr_fn ON jobs USING gin (ownr_fn gin_trgm_ops);
CREATE INDEX jobs_gin_ownr_ln ON jobs USING gin (ownr_ln gin_trgm_ops);
CREATE INDEX jobs_gin_clm_no ON jobs USING gin (clm_no gin_trgm_ops);

View File

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

View File

@@ -0,0 +1,2 @@
CREATE INDEX "veh_groups_make" on
"public"."veh_groups" using btree ("make");

View File

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

View File

@@ -0,0 +1,2 @@
CREATE INDEX "groupings_make" on
"public"."groupings" using btree ("make");