Upgrading doesn't drop correct table
-
When upgrading to the newest version I found out there is an issue with the dropping of the “old” table. The WP prefix is added twice which in my case resolved in trying to delete the wp_wp_fblb table which does not exist.
$table_name = $wpdb->prefix . ‘fblb’;
$charset_collate = $wpdb->get_charset_collate();
$wpdb->query(“DROP TABLE IF EXISTS {$wpdb->prefix}$table_name”);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Upgrading doesn't drop correct table’ is closed to new replies.