Skip to content

Instantly share code, notes, and snippets.

@pann
pann / bbpress-to-phpbb.sql
Last active February 7, 2018 10:00 — forked from hellosteadman/bbpress-to-phpbb.sql
Convert newer-style bbPress forums to phpBB (3.0). Based on code by primehifi (http://mark.tl/1l9HyRR)
/* If anything goes wrong, let's not muck up the database */
START TRANSACTION;
/* Clear tables and reset IDs */
TRUNCATE TABLE phpbb_forums;
TRUNCATE TABLE phpbb_topics;
TRUNCATE TABLE phpbb_topics_posted;
TRUNCATE TABLE phpbb_topics_track;
TRUNCATE TABLE phpbb_posts;
DELETE FROM phpbb_acl_groups WHERE forum_id > 0;