mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-16 04:03:47 +03:00
7 lines
277 B
SQL
7 lines
277 B
SQL
ALTER TABLE audit_logs
|
|
DROP CONSTRAINT IF EXISTS audit_logs_user_id_fkey,
|
|
ADD CONSTRAINT audit_logs_user_id_fkey
|
|
FOREIGN KEY (user_id) REFERENCES users (id);
|
|
|
|
ALTER TABLE oidc_authorization_codes
|
|
DROP CONSTRAINT IF EXISTS oidc_authorization_codes_client_fk; |