-- MySQL dump 9.11 -- -- Host: localhost Database: tontosc_fud -- ------------------------------------------------------ -- Server version 4.0.22-standard -- -- Table structure for table `fud26_cat` -- CREATE TABLE fud26_cat ( id int(11) NOT NULL auto_increment, name varchar(50) NOT NULL default '', description varchar(255) default NULL, cat_opt int(11) NOT NULL default '0', view_order int(11) NOT NULL default '3', parent int(11) NOT NULL default '0', PRIMARY KEY (id), KEY fud26_cat_p (parent) ) TYPE=MyISAM; -- -- Dumping data for table `fud26_cat` -- INSERT INTO fud26_cat VALUES (2,'English',' - English Forums',3,1,0); INSERT INTO fud26_cat VALUES (3,'Programming',' - Questions and tutorials about programming',3,1,2); INSERT INTO fud26_cat VALUES (4,'Español',' - Foros en Español',3,2,0); INSERT INTO fud26_cat VALUES (5,'Programación',' - Preguntas y tutoriales sobre programación',3,1,4); -- -- Table structure for table `fud26_forum` -- CREATE TABLE fud26_forum ( id int(11) NOT NULL auto_increment, cat_id int(11) NOT NULL default '0', name varchar(255) NOT NULL default '', descr text, post_passwd varchar(32) default NULL, forum_icon varchar(255) default NULL, date_created bigint(20) NOT NULL default '0', thread_count int(11) NOT NULL default '0', post_count int(11) NOT NULL default '0', last_post_id int(11) NOT NULL default '0', view_order int(11) NOT NULL default '0', max_attach_size int(11) NOT NULL default '0', max_file_attachments int(11) NOT NULL default '1', moderators text, message_threshold int(11) NOT NULL default '0', forum_opt int(11) NOT NULL default '16', PRIMARY KEY (id), KEY fud26_forum_i_c (cat_id), KEY fud26_forum_i_lpi (last_post_id) ) TYPE=MyISAM; -- -- Dumping data for table `fud26_forum` -- INSERT INTO fud26_forum VALUES (1,3,'PHP','Everything you want to know about PHP programming language','','',1102450699,30849,72670,120664,1,1024,1,NULL,0,52); INSERT INTO fud26_forum VALUES (2,5,'PHP','Todo lo que querías saber sobre el lenguaje de programación PHP','','',1102467212,14693,52667,192576,1,32768,1,NULL,0,52);