From 5a99d0fbc30cbf609b02622a43f5e3a6c892d2dd Mon Sep 17 00:00:00 2001 From: Carlton Hanna Date: Mon, 28 Oct 2024 13:26:32 -0600 Subject: [PATCH] Drop spotlight cache table (#565) * drop spotlight cache table flyway script * add change log entry --- CHANGELOG.md | 1 + .../db/migration/V1_94__Drop_spotlight_cache_table.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 database/src/main/resources/db/migration/V1_94__Drop_spotlight_cache_table.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index c5d76ac9..79843c11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * Update keep alive times for flow api grpc calls [#558](https://github.com/provenance-io/explorer-service/pull/558) * Updates to asset pricing table will set data column to null [#562](https://github.com/provenance-io/explorer-service/pull/562) * Remove `running_count` and `total_count` columns from the `missed_blocks` table [#549](https://github.com/provenance-io/explorer-service/issues/549) +* Remove `spotlight_cache` table [#559](https://github.com/provenance-io/explorer-service/pull/559) ### Bug Fixes diff --git a/database/src/main/resources/db/migration/V1_94__Drop_spotlight_cache_table.sql b/database/src/main/resources/db/migration/V1_94__Drop_spotlight_cache_table.sql new file mode 100644 index 00000000..eb33a0ac --- /dev/null +++ b/database/src/main/resources/db/migration/V1_94__Drop_spotlight_cache_table.sql @@ -0,0 +1,3 @@ +SELECT 'Drop spotlight cache table' AS comment; + +DROP TABLE IF EXISTS spotlight_cache;