diff options
author | Vitaly Takmazov | 2023-05-17 02:54:35 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-05-17 02:54:35 +0300 |
commit | 646b701211bb6e7ad583c27281d67d6cf7065da6 (patch) | |
tree | 409344cc03f29b85efda0ce0bb4e2d29a5bcc3e2 /src/main/resources/db | |
parent | d4297c2f93e93badfe1b2c948a0bc0e5f18be896 (diff) |
Upgrade `oauth2_registered_client` table schema
Diffstat (limited to 'src/main/resources/db')
-rw-r--r-- | src/main/resources/db/migration/V1.47__oauth_postlogout.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/resources/db/migration/V1.47__oauth_postlogout.sql b/src/main/resources/db/migration/V1.47__oauth_postlogout.sql new file mode 100644 index 00000000..c35bcfbb --- /dev/null +++ b/src/main/resources/db/migration/V1.47__oauth_postlogout.sql @@ -0,0 +1,2 @@ +alter table oauth2_registered_client add column post_logout_redirect_uris varchar (1000) default null + |