mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 01:10:40 +03:00
7 lines
298 B
SQL
7 lines
298 B
SQL
ALTER TABLE public.audit_logs
|
|
DROP CONSTRAINT IF EXISTS audit_logs_user_id_fkey,
|
|
ADD CONSTRAINT audit_logs_user_id_fkey
|
|
FOREIGN KEY (user_id) REFERENCES public.users (id);
|
|
|
|
ALTER TABLE public.oidc_authorization_codes
|
|
DROP CONSTRAINT IF EXISTS oidc_authorization_codes_client_fk; |