|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:21
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27026/install/schemas Modified Files: mysql_schema_install.sql Log Message: A couple of install bugs... Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** mysql_schema_install.sql 5 Sep 2006 17:03:46 -0000 1.24 --- mysql_schema_install.sql 14 Sep 2006 20:08:16 -0000 1.25 *************** *** 1,586 **** - # MySQL-Front Dump 2.4 # ! # Host: localhost Database: mxBB ! #-------------------------------------------------------- ! # Server version 3.23.51-nt ! ! # ! # Table structure for table 'mx_table_block' # [...962 lines suppressed...] ! INSERT INTO mx_table_parameter_option VALUES (5, 21, 'center', 'center'); ! INSERT INTO mx_table_parameter_option VALUES (6, 20, '_blank', 'New Window'); ! INSERT INTO mx_table_parameter_option VALUES (7, 20, '_self', 'Current Window'); + # -------------------------------------------------------- # ! # Table structure for table `mx_portal` # ! DROP TABLE IF EXISTS mx_table_portal; ! CREATE TABLE mx_table_portal ( ! portal_id smallint(5) unsigned NOT NULL auto_increment, ! portal_name varchar(150) default NULL, ! portal_phpbb_url varchar(255) default 'http://www.phpbb.com/phpBB/', ! portal_url varchar(255) default NULL, ! portal_version varchar(255) default NULL, ! top_phpbb_links smallint(5) unsigned NOT NULL default '1', ! PRIMARY KEY (portal_id) ! ); |