rvr-nextgen/database/migrations/structure/20230411_1736_oauth_openid.sql
Pőcze Bence 58b69bf933
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
make oauth endpoints openid compliant
2023-04-11 17:45:08 +02:00

5 lines
201 B
SQL

ALTER TABLE `oauth_tokens`
ADD `scope` varchar(255) NOT NULL DEFAULT '',
ADD `access_token` varchar(255) CHARACTER SET ascii COLLATE ascii_bin DEFAULT NULL,
ADD UNIQUE `access_token` (`access_token`);