12 lines
467 B
SQL
12 lines
467 B
SQL
CREATE TABLE `salix`.`accessTokenConfig` (
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`renewPeriod` int(10) unsigned DEFAULT NULL,
|
|
`courtesyTime` int(10) unsigned DEFAULT NULL,
|
|
`renewInterval` int(10) unsigned DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
|
|
|
|
INSERT IGNORE INTO `salix`.`accessTokenConfig` (`id`, `renewPeriod`, `courtesyTime`, `renewInterval`)
|
|
VALUES
|
|
(1, 21600, 5, 300);
|