wp_analytical_spam_filter_content_history
StaticStores analytical spam filter content history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| hash_val | binary(64) | NO |
| time | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_analytical_spam_filter_content_history ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, hash_val binary(64) NOT NULL, time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, PRIMARY KEY (id) ) {$charset_collate};"; include_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );Safe to delete?
If you have uninstalled Analytical Spam Filter, 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_analytical_spam_filter_content_history`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Analytical Spam Filter