2 -- Copyright (C) 2010 Tobias Leupold <tobias.leupold@web.de>
4 -- This file is part of the b8 package
6 -- This program is free software; you can redistribute it and/or modify it
7 -- under the terms of the GNU Lesser General Public License as published by
8 -- the Free Software Foundation in version 2.1 of the License.
10 -- This program is distributed in the hope that it will be useful, but
11 -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
13 -- License for more details.
15 -- You should have received a copy of the GNU Lesser General Public License
16 -- along with this program; if not, write to the Free Software Foundation,
17 -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19 CREATE TABLE `b8_wordlist` (
20 `token` varchar(255) character set utf8 collate utf8_bin NOT NULL,
21 `count` varchar(255) default NULL,
23 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
25 INSERT INTO `b8_wordlist` VALUES ('bayes*dbversion', '2');
26 INSERT INTO `b8_wordlist` VALUES ('bayes*texts.ham', '0');
27 INSERT INTO `b8_wordlist` VALUES ('bayes*texts.spam', '0');