Lines 4971-4977
CREATE TABLE `oauth_access_tokens` (
Link Here
|
4971 |
`access_token` varchar(191) NOT NULL COMMENT 'generarated access token', |
4971 |
`access_token` varchar(191) NOT NULL COMMENT 'generarated access token', |
4972 |
`client_id` varchar(191) NOT NULL COMMENT 'the client id the access token belongs to', |
4972 |
`client_id` varchar(191) NOT NULL COMMENT 'the client id the access token belongs to', |
4973 |
`expires` int(11) NOT NULL COMMENT 'expiration time in seconds', |
4973 |
`expires` int(11) NOT NULL COMMENT 'expiration time in seconds', |
4974 |
PRIMARY KEY (`access_token`) |
4974 |
PRIMARY KEY (`access_token`), |
|
|
4975 |
KEY `expires` (`expires`) |
4975 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4976 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4976 |
/*!40101 SET character_set_client = @saved_cs_client */; |
4977 |
/*!40101 SET character_set_client = @saved_cs_client */; |
4977 |
|
4978 |
|
4978 |
- |
|
|