<?php
/**
 * Uninstall: drops the sites registry table and options.
 *
 * Deliberately KEEPS all bw_guide posts — they are the master copies of
 * authored guides, not plugin housekeeping data.
 */

defined( 'WP_UNINSTALL_PLUGIN' ) || exit;

global $wpdb;
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}bw_guides_sites" );
delete_option( 'bw_guides_server_db_version' );
