]> git.donarmstrong.com Git - infobot.git/blob - setup/sqlite/botmail.sql
avoid reassigning to temp upon decode_utf8
[infobot.git] / setup / sqlite / 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 );