Lines 4208-4218
CREATE TABLE `oauth_access_tokens` (
Link Here
|
4208 |
`client_id` VARCHAR(191) NOT NULL, -- the client id the access token belongs to |
4208 |
`client_id` VARCHAR(191) NOT NULL, -- the client id the access token belongs to |
4209 |
`expires` INT NOT NULL, -- expiration time in seconds |
4209 |
`expires` INT NOT NULL, -- expiration time in seconds |
4210 |
PRIMARY KEY (`access_token`) |
4210 |
PRIMARY KEY (`access_token`) |
|
|
4211 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4211 |
|
4212 |
|
|
|
4213 |
-- |
4212 |
-- Table structure for table illcomments |
4214 |
-- Table structure for table illcomments |
4213 |
-- |
4215 |
-- |
4214 |
|
4216 |
|
4215 |
DROP TABLE IF EXISTS illcomments; |
4217 |
DROP TABLE IF EXISTS `illcomments`; |
4216 |
CREATE TABLE illcomments ( |
4218 |
CREATE TABLE illcomments ( |
4217 |
illcomment_id int(11) NOT NULL AUTO_INCREMENT, -- Unique ID of the comment |
4219 |
illcomment_id int(11) NOT NULL AUTO_INCREMENT, -- Unique ID of the comment |
4218 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
4220 |
illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number |
4219 |
- |
|
|