Created
September 29, 2017 14:26
-
-
Save leantony/c6e8ab0ddffc56fc79c785d0b51da647 to your computer and use it in GitHub Desktop.
mysql tables for oauth2 spring
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS `oauth_access_token` ( | |
`token_id` varchar(255) DEFAULT NULL, | |
`token` blob, | |
`authentication_id` varchar(255) DEFAULT NULL, | |
`user_name` varchar(255) DEFAULT NULL, | |
`client_id` varchar(255) DEFAULT NULL, | |
`authentication` blob, | |
`refresh_token` varchar(255) DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
CREATE TABLE IF NOT EXISTS `oauth_approvals` ( | |
`userId` varchar(255) NOT NULL, | |
`clientId` varchar(255) NOT NULL, | |
`scope` varchar(255) DEFAULT NULL, | |
`status` varchar(10) NOT NULL, | |
`expiresAt` timestamp NULL DEFAULT NULL, | |
`lastModifiedAt` timestamp NULL DEFAULT NULL, | |
KEY `user_id` (`userId`), | |
KEY `client_id` (`clientId`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
CREATE TABLE IF NOT EXISTS `oauth_client_details` ( | |
`client_id` varchar(255) NOT NULL, | |
`resource_ids` varchar(255) DEFAULT NULL, | |
`client_secret` varchar(255) DEFAULT NULL, | |
`scope` varchar(255) DEFAULT NULL, | |
`authorized_grant_types` varchar(255) DEFAULT NULL, | |
`web_server_redirect_uri` varchar(255) DEFAULT NULL, | |
`authorities` varchar(255) DEFAULT NULL, | |
`access_token_validity` int(11) DEFAULT NULL, | |
`refresh_token_validity` int(11) DEFAULT NULL, | |
`additional_information` varchar(4096) DEFAULT NULL, | |
`autoapprove` varchar(255) DEFAULT NULL, | |
PRIMARY KEY (`client_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
CREATE TABLE IF NOT EXISTS `oauth_code` ( | |
`code` varchar(255) DEFAULT NULL, | |
`authentication` blob | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
CREATE TABLE IF NOT EXISTS `oauth_client_token` ( | |
`token_id` varchar(255) DEFAULT NULL, | |
`token` blob, | |
`authentication_id` varchar(255) DEFAULT NULL, | |
`user_name` varchar(255) DEFAULT NULL, | |
`client_id` varchar(255) DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
CREATE TABLE IF NOT EXISTS `oauth_refresh_token` ( | |
`token_id` varchar(255) DEFAULT NULL, | |
`token` blob, | |
`authentication` blob | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment