[Phpbbkb-checkins] SF.net SVN: phpbbkb: [17] root/kb_install.php
Status: Alpha
Brought to you by:
markthedaemon
From: <so...@us...> - 2006-11-21 14:59:33
|
Revision: 17 http://svn.sourceforge.net/phpbbkb/?rev=17&view=rev Author: softphp Date: 2006-11-21 06:59:32 -0800 (Tue, 21 Nov 2006) Log Message: ----------- - Added new fields in the database tables. Modified Paths: -------------- root/kb_install.php Modified: root/kb_install.php =================================================================== --- root/kb_install.php 2006-10-30 11:50:22 UTC (rev 16) +++ root/kb_install.php 2006-11-21 14:59:32 UTC (rev 17) @@ -51,8 +51,10 @@ $sql = array(); $sql[] = "CREATE TABLE " . $table_prefix . "kb_categories ( cat_id mediumint(8) UNSIGNED NOT NULL auto_increment, + cat_main mediumint(8) UNSIGNED DEFAULT '0', cat_title varchar(100) NOT NULL, cat_desc varchar(255) NOT NULL, + cat_articles mediumint(8) UNSIGNED DEFAULT '0', cat_order mediumint(8) UNSIGNED NOT NULL, PRIMARY KEY (cat_id), KEY cat_order (cat_order) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |