-
Notifications
You must be signed in to change notification settings - Fork 1
MySQL Schema
Zeyi Fan edited this page Jul 31, 2016
·
2 revisions
Column Name | Type | Remark |
---|---|---|
id | INT | Primary Key |
hash | VARCHAR(32) | Unique, Index |
url | TEXT | |
html | BLOB | Original HTML |
text | BLOB | Extracted Text |
CREATE TABLE `urls` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`hash` varchar(32) CHARACTER SET utf8 NOT NULL DEFAULT '',
`url` text COLLATE utf8_unicode_ci NOT NULL,
`html` blob NOT NULL,
`text` blob NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;