fix: sync temp auth key expiry boundaries
This commit is contained in:
parent
305e8a0008
commit
20a310f6ca
50 changed files with 3626 additions and 335 deletions
10
deploy/migrations/0086_auth_key_protocol_expiry.down.sql
Normal file
10
deploy/migrations/0086_auth_key_protocol_expiry.down.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
ALTER TABLE public.temp_auth_key_bindings
|
||||
DROP CONSTRAINT IF EXISTS temp_auth_key_bindings_perm_auth_key_id_fkey;
|
||||
|
||||
DROP INDEX IF EXISTS public.auth_keys_temporary_expiry_seek_idx;
|
||||
|
||||
ALTER TABLE public.auth_keys
|
||||
DROP CONSTRAINT IF EXISTS auth_keys_expires_at_valid;
|
||||
|
||||
ALTER TABLE public.auth_keys
|
||||
DROP COLUMN IF EXISTS expires_at;
|
||||
Loading…
Add table
Add a link
Reference in a new issue