oak-general-business/upgrade/5.11.1/01.sql

13 lines
322 B
SQL

SET SESSION sql_mode = 'TRADITIONAL';
START TRANSACTION;
alter table oauthApplication
add requirePKCE tinyint(1) default false not null after ableState;
alter table oauthProvider
modify type varchar(64) not null;
alter table oauthUser
add loadState enum ('unload', 'loaded') null after stateId;
COMMIT;