Skip to content

Instantly share code, notes, and snippets.

@stanleybz
Created August 21, 2019 13:56
Show Gist options
  • Save stanleybz/defd1b436e047b7eeef423fc0f105bf4 to your computer and use it in GitHub Desktop.
Save stanleybz/defd1b436e047b7eeef423fc0f105bf4 to your computer and use it in GitHub Desktop.
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`)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment