]> git.donarmstrong.com Git - infobot.git/blob - setup/rootwarn.sql
- patch from Morten Brix Pedersen <morten@wtf.dk>. Thanks!
[infobot.git] / setup / rootwarn.sql
1 CREATE TABLE rootwarn (
2         nick VARCHAR(20) NOT NULL,
3         attempt SMALLINT UNSIGNED,
4         time INT NOT NULL,
5         host VARCHAR(80) NOT NULL,
6         channel VARCHAR(20) NOT NULL,
7
8         PRIMARY KEY (nick)
9 );