
To update your "core extended" branch with the latest sitebuilder database schema and default data, do the following:

1. Run an SVN Update
2. Run devimport.php
3. Run the 5.0.0 Alpha 1 upgrader by going to the URL:
	http://YOUR-CORE-EXTENDED-INSTALLATION/install/upgrade.php?version=500a1&only=1

Note that doing this will remove all pages and page templates in the database.

--------------------------

If you need to manually remove all pages and page templates, you may run the following queries (be sure to add your table prefix):

(these queries are subject to change, so check back here often)

TRUNCATE TABLE `page`;
TRUNCATE TABLE `pagetemplate`;
TRUNCATE TABLE `widgetinstance`;
DELETE FROM `template` WHERE title LIKE 'sb\_page\_%' AND title <> 'sb_page_list' AND title <> 'sb_page_template';

