Created
August 21, 2019 13:56
-
-
Save stanleybz/4270ededbcb11ae20873b246f3082cbe to your computer and use it in GitHub Desktop.
This file contains 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 `xxx_litespeed_optimizer` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`hash_name` varchar(60) NOT NULL COMMENT "hash.filetype", | |
`src` text NOT NULL COMMENT "full url array set", | |
`dateline` int(11) NOT NULL, | |
`refer` varchar(255) NOT NULL COMMENT "The container page url", | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `hash_name` (`hash_name`), | |
KEY `dateline` (`dateline`) | |
) | |
(Rename xxx_litespeed_optimizer with your database prefix) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment