Created
July 8, 2013 11:56
-
-
Save garvinhicking/5948143 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 serendipity_spamblocklog ( | |
timestamp int(10) default null, | |
type varchar(255), | |
reason text, | |
entry_id int(10) not null default '0', | |
author varchar(80), | |
email varchar(200), | |
url varchar(200), | |
useragent varchar(255), | |
ip varchar(15), | |
referer varchar(255), | |
body text) | |
); | |
CREATE INDEX kspamidx ON serendipity_spamblocklog (timestamp); | |
CREATE INDEX kspamtypeidx ON serendipity_spamblocklog (type); | |
CREATE INDEX kspamentryidx ON serendipity_spamblocklog (entry_id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment