diff --git a/packages/db/0056.sql b/packages/db/0056.sql new file mode 100644 index 00000000..4d6568cc --- /dev/null +++ b/packages/db/0056.sql @@ -0,0 +1,7 @@ +drop index if exists run_input_idx; +drop index if exists run_output_idx; +drop index if exists run_error_idx; +drop table log; +create extension if not exists btree_gin; +create index run_project_id_input_idx on run using gin (project_id, ((input)::text) gin_trgm_ops); +create index run_project_id_output_idx on run using gin (project_id, ((output)::text) gin_trgm_ops); \ No newline at end of file