]> git.mxchange.org Git - friendica.git/blob - library/spam/install/setup_mysql.sql
Merge pull request #2158 from annando/1512-vier-fonts
[friendica.git] / library / spam / install / setup_mysql.sql
1
2 --   Copyright (C) 2010 Tobias Leupold <tobias.leupold@web.de>
3 --
4 --   This file is part of the b8 package
5 --
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.
9 --
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.
14 --
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.
18
19 CREATE TABLE `b8_wordlist` (
20   `token` varchar(255) character set utf8 collate utf8_bin NOT NULL,
21   `count` varchar(255) default NULL,
22   PRIMARY KEY  (`token`)
23 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
24
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');