Skip to content

Commit

Permalink
fix: 'ERROR: data type bigint has no default operator class for acces…
Browse files Browse the repository at this point in the history
…s method "gin"'
  • Loading branch information
jpmckinney committed Jan 23, 2025
1 parent 7818d18 commit 4e192ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pelican/migrations/001_base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS report (
-- pelican-frontend/backend/api/views.py (FieldLevelDetail, ResourceLevelDetail)
-- pelican-frontend/backend/exporter/template_tags/field.py
-- pelican-frontend/backend/exporter/template_tags/resource.py
CREATE INDEX IF NOT EXISTS report_dataset_id_type_data_idx ON report USING gin (dataset_id, type, data);
CREATE INDEX IF NOT EXISTS report_dataset_id_type_data_idx ON report USING btree_gin (dataset_id, type, data);

CREATE TABLE IF NOT EXISTS progress_monitor_dataset (
id bigserial PRIMARY KEY,
Expand Down

0 comments on commit 4e192ab

Please sign in to comment.