From 773d1719096df60e6c3dad7abf798c3209a12807 Mon Sep 17 00:00:00 2001 From: Bobby Novak <176936850+rnovak338@users.noreply.github.com> Date: Thu, 26 Sep 2024 17:26:28 -0400 Subject: [PATCH] Hotfix - continuation of #4328 (#4329) * Update drop_schema.sql This should drop a now deprecated `admin_api_v1_0_0`, which appears to still exist in the dev environment. It is likely to also still exist in staging and prod. This update drops the table to prevent any hassles with newer table changes, migrations, etc. * Update drop_schema.sql One more for the road. Follow-up to #4328. --- backend/support/api/admin_api_v1_1_0/drop_schema.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/support/api/admin_api_v1_1_0/drop_schema.sql b/backend/support/api/admin_api_v1_1_0/drop_schema.sql index cb9a9b410..5155b75b1 100644 --- a/backend/support/api/admin_api_v1_1_0/drop_schema.sql +++ b/backend/support/api/admin_api_v1_1_0/drop_schema.sql @@ -2,6 +2,7 @@ begin; DROP SCHEMA IF EXISTS admin_api_v1_0_0 CASCADE; +DROP SCHEMA IF EXISTS admin_api_v1_0_0_functions CASCADE; DROP SCHEMA IF EXISTS admin_api_v1_1_0 CASCADE; commit;