]> git.donarmstrong.com Git - infobot.git/blob - blootbot/setup/sqlite/seen.sql
major re-organisation of the different SQL files; cleanup and fixing of the postgres...
[infobot.git] / blootbot / setup / sqlite / seen.sql
1 CREATE TABLE seen (
2  nick VARCHAR(20) NOT NULL,
3  time INT NOT NULL,
4  channel VARCHAR(20) NOT NULL,
5  host VARCHAR(80) NOT NULL,
6  message TINYTEXT NOT NULL,
7  PRIMARY KEY (nick,channel)
8 );