|
From: Jon O. <jon...@us...> - 2005-10-22 23:18:39
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9097/install/schemas Modified Files: mysql_schema_install.sql Log Message: updated i forgot to add new db fields to the fresh install (i had it for the upgrade ;) Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mysql_schema_install.sql 9 Sep 2005 17:52:00 -0000 1.7 --- mysql_schema_install.sql 22 Oct 2005 23:18:27 -0000 1.8 *************** *** 393,396 **** --- 393,397 ---- `page_header` varchar(255) default 'overall_header.tpl', `page_graph_border` varchar(255) NOT NULL default '', + `ip_filter` varchar(255) NOT NULL default '', PRIMARY KEY (`page_id`) ); *************** *** 401,408 **** # Dumping data for table 'mx_table_page' # ! INSERT INTO mx_table_page VALUES("4", "Sitestats", "Sitestats page", "nav_statistics.gif", "0", "0", "0", "overall_header.tpl", ""); ! INSERT INTO mx_table_page VALUES("1", "Home", "This is the startpage", "nav_home.gif", "0", "0", "0", "overall_header.tpl", ""); ! INSERT INTO mx_table_page VALUES("2", "Forum", "This is the phpBB Forum startpage", "nav_forum.gif", "0", "0", "0", "overall_header.tpl", ""); ! INSERT INTO mx_table_page VALUES("3", "Demo Page", "Block Demos", "nav_develope.gif", "0", "0", "0", "overall_header.tpl", ""); --- 402,409 ---- # Dumping data for table 'mx_table_page' # ! INSERT INTO mx_table_page VALUES("4", "Sitestats", "Sitestats page", "nav_statistics.gif", "0", "0", "0", "overall_header.tpl", "", ""); ! INSERT INTO mx_table_page VALUES("1", "Home", "This is the startpage", "nav_home.gif", "0", "0", "0", "overall_header.tpl", "", ""); ! INSERT INTO mx_table_page VALUES("2", "Forum", "This is the phpBB Forum startpage", "nav_forum.gif", "0", "0", "0", "overall_header.tpl", "", ""); ! INSERT INTO mx_table_page VALUES("3", "Demo Page", "Block Demos", "nav_develope.gif", "0", "0", "0", "overall_header.tpl", "", ""); *************** *** 513,517 **** `top_phpbb_links` smallint(5) unsigned NOT NULL default '1', `mx_use_cache` smallint(5) unsigned NOT NULL default '1', ! `portal_recached` varchar(255) binary NOT NULL default '', PRIMARY KEY (`portal_id`) ); --- 514,519 ---- `top_phpbb_links` smallint(5) unsigned NOT NULL default '1', `mx_use_cache` smallint(5) unsigned NOT NULL default '1', ! `portal_recached` varchar(255) NOT NULL default '', ! `mod_rewrite` varchar(255) NOT NULL default '0', PRIMARY KEY (`portal_id`) ); |