Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save keithmeng/3b5239b30e00bba48b56b77794f41fba to your computer and use it in GitHub Desktop.
Save keithmeng/3b5239b30e00bba48b56b77794f41fba to your computer and use it in GitHub Desktop.
copy_tables
UPDATE rover_auth_client r
SET client_id = o.client_id, client_secret = o.client_secret
FROM oidc_provider_client o
WHERE r.name = o.name
AND o.name = 'atonns';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment