
db.migration.V5__rename-scopes.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uaa-server Show documentation
Show all versions of uaa-server Show documentation
Single tenant simple OAuth 2 Server a.k.a. Maki UAA (User Account and Authentication)
The newest version!
UPDATE app_scopes SET scopes='member.read' WHERE scopes='READ';
UPDATE app_scopes SET scopes='member.write' WHERE scopes='WRITE';
UPDATE app_scopes SET scopes='openid' WHERE scopes='OPENID';
UPDATE app_auto_approve_scopes SET auto_approve_scopes='member.read' WHERE auto_approve_scopes='READ';
UPDATE app_auto_approve_scopes SET auto_approve_scopes='member.write' WHERE auto_approve_scopes='WRITE';
UPDATE app_auto_approve_scopes SET auto_approve_scopes='openid' WHERE auto_approve_scopes='OPENID';
© 2015 - 2025 Weber Informatics LLC | Privacy Policy