fix: sync temp auth key expiry boundaries

This commit is contained in:
A 2026-07-13 23:04:15 +08:00
parent 305e8a0008
commit 20a310f6ca
50 changed files with 3626 additions and 335 deletions

View 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;