wp_analytical_spam_filter_submitter_history
StaticStores analytical spam filter submitter history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| submitter | varbinary(16) | NO |
| time | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_analytical_spam_filter_submitter_history ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, submitter varbinary(16) 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_submitter_history`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Analytical Spam Filter