rvr-nextgen/database/migrations/structure/20230411_2004_oauth_restrictions.sql
Pőcze Bence a7790319eb
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
restrict oauth access
2023-04-12 00:10:14 +02:00

11 lines
478 B
SQL

CREATE TABLE `oauth_clients` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`client_id` varchar(16) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`client_secret` varchar(40) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`redirect_uris` text NOT NULL,
`preapproved` tinyint(1) NOT NULL DEFAULT 0,
`created` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
UNIQUE KEY `client_id` (`client_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;