]> git.donarmstrong.com Git - infobot.git/blob - setup/botmail.sql
- new tables. not used as yet.
[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
8         PRIMARY KEY (srcwho,dstwho)
9 );