]> git.donarmstrong.com Git - infobot.git/blob - setup/botmail.sql
major re-organisation of the different SQL files; cleanup and fixing of the postgres...
[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 );