|
From: FlorinCB <ory...@us...> - 2008-08-19 02:46:58
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9848/install/schemas Modified Files: mysql_41_schema_install.sql mysql_schema_install.sql Log Message: some bugs fixed and mysql_41 schema upgraded Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** mysql_schema_install.sql 16 Feb 2008 21:52:33 -0000 1.54 --- mysql_schema_install.sql 19 Aug 2008 02:46:24 -0000 1.55 *************** *** 338,342 **** `page_desc` varchar(255), `page_parent` int(50) DEFAULT '0', ! `parents_data` text NOT NULL DEFAULT '', `page_order` smallint(5) DEFAULT '0', `page_icon` varchar(255), --- 338,342 ---- `page_desc` varchar(255), `page_parent` int(50) DEFAULT '0', ! `parents_data` text NOT NULL, `page_order` smallint(5) DEFAULT '0', `page_icon` varchar(255), Index: mysql_41_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_41_schema_install.sql,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mysql_41_schema_install.sql 9 Feb 2008 12:47:15 -0000 1.3 --- mysql_41_schema_install.sql 19 Aug 2008 02:46:24 -0000 1.4 *************** *** 3,7 **** # Host: localhost Database: MX-Publisher #-------------------------------------------------------- - # Server version 3.23.51-nt --- 3,6 ---- *************** *** 9,32 **** # Table structure for table 'mx_table_block' # [...1509 lines suppressed...] ! ! DROP TABLE IF EXISTS mx_table_words; ! CREATE TABLE mx_table_words ( word_id mediumint(8) UNSIGNED NOT NULL auto_increment, word char(100) NOT NULL, replacement char(100) NOT NULL, PRIMARY KEY (word_id) ! ) CHARACTER SET `utf8` COLLATE `utf8_bin`; ! --- 752,760 ---- # Table structure for table 'mx_table_words' # ! DROP TABLE IF EXISTS `mx_table_words`; ! CREATE TABLE `mx_table_words` ( word_id mediumint(8) UNSIGNED NOT NULL auto_increment, word char(100) NOT NULL, replacement char(100) NOT NULL, PRIMARY KEY (word_id) ! ) CHARACTER SET `utf8` COLLATE `utf8_bin`; \ No newline at end of file |