fix(db): remove storage_plugin_storage_bucket_secret-rewrapping-job table (#4993)

pull/4996/head
Damian Debkowski 2 years ago committed by GitHub
parent 28b465e4b8
commit 5707a64b20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,9 @@
-- Copyright (c) HashiCorp, Inc.
-- SPDX-License-Identifier: BUSL-1.1
begin;
-- the storage_plugin_storage_bucket_secret table was replaced by storage_bucket_credential_managed_secret
-- in migration 88/01_storage_bucket_credential.up.sql.
-- the storage_plugin_storage_bucket_secret-rewrapping-job was replaced by storage_bucket_credential_managed_secret-rewrapping-job.
delete from job where name = 'storage_plugin_storage_bucket_secret-rewrapping-job';
commit;
Loading…
Cancel
Save