wp_if
StaticStores if data created by this plugin.
CREATE TABLE Statement
create table if ( isset( $row['Create Table'] ) ) { return $row['Create Table']; } } /** * Repair MySQL table * * @param string $table_name Table name * @return void */ protected function repair_table( $table_name ) { $this->query( "REPAIR TABLE `{$table_name}`" );Safe to delete?
If you have uninstalled All-in-One WP Migration and Backup, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_if`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.