Skip to content

Commit

Permalink
Update drop_schema.sql (#4328)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rnovak338 authored Sep 26, 2024
1 parent 3e9b8d7 commit 2dda14a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/support/api/admin_api_v1_1_0/drop_schema.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

begin;

DROP SCHEMA IF EXISTS admin_api_v1_0_0 CASCADE;
DROP SCHEMA IF EXISTS admin_api_v1_1_0 CASCADE;

commit;
Expand Down

0 comments on commit 2dda14a

Please sign in to comment.