Skip to content

Commit

Permalink
migrations: add future key table removal
Browse files Browse the repository at this point in the history
This can't be applied until all versions that expect the table to exist
are out of support.

Signed-off-by: Hank Donnay <hdonnay@redhat.com>
  • Loading branch information
hdonnay committed Jul 15, 2021
1 parent dc0b707 commit cef8142
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions notifier/migrations/migration_future.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package migrations

const (
// This migration drops the key table, as all of its users have been removed.
//
// This should only be applied once keymanager removal patches are backported,
// or 4.1 is out of support.
_ = `DROP TABLE key;`
)

0 comments on commit cef8142

Please sign in to comment.