]> git.donarmstrong.com Git - infobot.git/blob - setup/botmail.sql
If topicAuthor is on then show it in topic, otherwise just topic -- contribution...
[infobot.git] / setup / botmail.sql
1 CREATE TABLE botmail (
2  srcwho VARCHAR(20) NOT NULL,
3  dstwho VARCHAR(20) NOT NULL,
4  srcuh VARCHAR(80) NOT NULL,
5  time INT UNSIGNED DEFAULT 'UNIX_TIMESTAMP()',
6  msg TEXT NOT NULL,
7  PRIMARY KEY (srcwho,dstwho)
8 );