Additional hasura migrations.
This commit is contained in:
@@ -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."
|
||||
}
|
||||
}
|
||||
|
||||
1
hasura/metadata/backend_configs.yaml
Normal file
1
hasura/metadata/backend_configs.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
hasura/metadata/opentelemetry.yaml
Normal file
1
hasura/metadata/opentelemetry.yaml
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -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;
|
||||
@@ -0,0 +1 @@
|
||||
CREATE EXTENSION pg_trgm;
|
||||
@@ -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);
|
||||
@@ -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);
|
||||
@@ -0,0 +1 @@
|
||||
DROP INDEX IF EXISTS "public"."veh_groups_make";
|
||||
@@ -0,0 +1,2 @@
|
||||
CREATE INDEX "veh_groups_make" on
|
||||
"public"."veh_groups" using btree ("make");
|
||||
@@ -0,0 +1 @@
|
||||
DROP INDEX IF EXISTS "public"."groupings_make";
|
||||
@@ -0,0 +1,2 @@
|
||||
CREATE INDEX "groupings_make" on
|
||||
"public"."groupings" using btree ("make");
|
||||
Reference in New Issue
Block a user