This is an archive of the phpBB 2.0.x convertors forum. Support for phpBB2 has now ended.
Forum rules Following phpBB2's EoL, this forum is now archived for reference purposes only.
Please see the following announcement for more information: viewtopic.php?f=14&t=1385785
-- Table structure for table `xoops_bb_posts_text`
--
DROP TABLE IF EXISTS `xoops_bb_posts_text`;
CREATE TABLE IF NOT EXISTS `xoops_bb_posts_text` (
`post_id` int(10) unsigned NOT NULL default '0',
`post_text` text,
`post_edit` text NOT NULL,
PRIMARY KEY (`post_id`),
FULLTEXT KEY `search` (`post_text`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `xoops_bb_posts_text`
--
INSERT INTO `xoops_bb_posts_text` VALUES (1, 'until Zim deletes it...LOL.', '');
INSERT INTO `xoops_bb_posts_text` VALUES (2, 'lmao, nah\r\n\r\nhell your a mod, you can del my post :x ', '');
INSERT INTO `xoops_bb_posts_text` VALUES (3, 'WEll... IM Second! LOLOLOL :w00t ', '');
INSERT INTO `xoops_bb_posts_text` VALUES (4, 'third :P ', '');
The posts and topics tables look almost the same as phpBB tables with some extra fields. The posts_text table is the same but is missing the bbcode_uid field. You could probably get by with renaming the tables and dropping the extra fields. The bbcode_uid field will have to be added to the posts_text table.
If you have the phpBB download package, look at install/mysql_schema.sql to see the table differences.
Why would you have to edit the posts? Because of the formatting? I say that because I wonder what newbb uses for bbcode since there is no bbcode_uid field.