]> git.donarmstrong.com Git - infobot.git/blob - setup/mysql/botmail.sql
* Missed DebianBugs.pl in the previous merge
[infobot.git] / setup / mysql / botmail.sql
1 --
2 -- Table structure for table `botmail`
3 --
4
5 CREATE TABLE `botmail` (
6   `srcwho` varchar(20) NOT NULL default '',
7   `dstwho` varchar(20) NOT NULL default '',
8   `srcuh` varchar(80) NOT NULL default '',
9   `time` int(10) unsigned default '0',
10   `msg` text NOT NULL,
11   PRIMARY KEY  (`srcwho`,`dstwho`)
12 ) TYPE=MyISAM;