|
From: Jon O. <jon...@us...> - 2006-09-14 20:18:22
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv31278/install/schemas Modified Files: mysql_schema_install.sql Log Message: mistake Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** mysql_schema_install.sql 14 Sep 2006 20:08:16 -0000 1.25 --- mysql_schema_install.sql 14 Sep 2006 20:18:19 -0000 1.26 *************** *** 1,405 **** # ! # mxBB-Portal - MySQL Schema - version 2.7.5 ! # ! # $Id$ ! # - # -------------------------------------------------------- # ! # Table structure for table `mx_block` [...974 lines suppressed...] ! `word_common` tinyint(1) unsigned NOT NULL default '0', ! PRIMARY KEY (`word_text`), ! KEY `word_id` (`word_id`) ! ) TYPE=MyISAM; ! # ! # Table structure for table 'mx_table_wordmatch' # ! DROP TABLE IF EXISTS mx_table_wordmatch; ! CREATE TABLE `mx_table_wordmatch` ( ! `block_id` mediumint(8) unsigned NOT NULL default '0', ! `word_id` mediumint(8) unsigned NOT NULL default '0', ! `title_match` tinyint(1) NOT NULL default '0', ! KEY `block_id` (`block_id`), ! KEY `word_id` (`word_id`) ! ) TYPE=MyISAM; ! |