CREATE TABLE cs_banlist (
rowid int(10) unsigned NOT NULL auto_increment,
ip varchar(32) NOT NULL,
country varchar(255),
created_on datetime NOT NULL,
PRIMARY KEY (rowid),
UNIQUE KEY ip (ip)
);
I have to note I've only run Wordsmith on MySQL 4, MyISAM (not InnoDB).
< Previous |
1 |
Next >
Add a Reply
This forum does not allow anonymous participation.
Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.