wp_some_table
StaticStores some table data created by this plugin.
CREATE TABLE Statement
CREATE TABLE definition formatted for use by \db_delta(), * without the charset collate clause. * * Example: * `CREATE TABLE some_table ( * id mediumint(9) NOT NULL AUTO_INCREMENT, * some_column varchar(100) NOT NULL, * PRIMARY KEY (id) * )` * * @since 2.4.0 * * @param string $table_name The table name including any prefixes. * * @return string */ abstract protected function get_table_definition( $table_name );
Safe to delete?
If you have uninstalled Avatar Privacy, 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_some_table`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.