Skip to content

Commit

Permalink
Merge pull request #1490 from /issues/1489-update-migration-guide
Browse files Browse the repository at this point in the history
Fix #1489: Update migration guide for Postgres for OAuth 2.1 migration
  • Loading branch information
romanstrobl authored Nov 29, 2023
2 parents 24a1c27 + 7ffb175 commit 4bca170
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Web-Flow-1.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ CREATE TABLE oauth2_registered_client (
PRIMARY KEY (id)
);

CREATE UNIQUE INDEX client_id_unique ON oauth2_registered_client (client_id);

-- Table oauth2_registered_client stores information about OAuth 2.1 consents
-- Source: https://github.com/spring-projects/spring-authorization-server/blob/main/oauth2-authorization-server/src/main/resources/org/springframework/security/oauth2/server/authorization/oauth2-authorization-consent-schema.sql
CREATE TABLE oauth2_authorization_consent (
Expand Down

0 comments on commit 4bca170

Please sign in to comment.