fix: authn keys migration (#1378)

This commit is contained in:
Fabi 2021-03-03 01:04:14 +01:00 committed by GitHub
parent cf499a1c1c
commit a47e592b22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,6 @@
BEGIN;
UPDATE auth.authn_keys SET object_type = 1 where object_type = 0;
UPDATE management.authn_keys SET object_type = 1 where object_type = 0;
COMMIT;