-
Notifications
You must be signed in to change notification settings - Fork 0
Rebuild custom database tables
Milan Petrovic edited this page Aug 10, 2019
·
7 revisions
The first step in the migration to custom database tables is to make sure the tables are created and empty. The order of running queries is important (some queries depend on other queries already being run).
- Run the
generate/inserts/wp_bbp_forums.sql
query. - Run the
generate/inserts/wp_bbp_topics.sql
query. - Run the
generate/inserts/wp_bbp_replies.sql
query. - Run the
generate/inserts/wp_bbp_users.sql
query.
- Run the
generate/inserts/wp_bbp_engaged_topics.sql
query. - Run the
generate/inserts/wp_bbp_favorited_topics.sql
query. - Run the
generate/inserts/wp_bbp_subscribed_topics.sql
query. - Run the
generate/inserts/wp_bbp_subscribed_forums.sql
query.
- Run the
generate/updates/wp_bbp_replies.sql
query.
- Run the
generate/updates/wp_bbp_topics.sql
query.
- Run the
generate/updates/wp_bbp_forums.sql
query. - Now we need to run PHP code that will do some recursive updates to fill all the missing data.
- Run the
generate/updates/wp_bbp_forums_part_2.sql
query.