wp_simplefeed_bots_protection_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
timedatetimeNO
texttextNO

CREATE TABLE Statement

CREATE TABLE wp_simplefeed_bots_protection_logs ( id mediumint(9) NOT NULL AUTO_INCREMENT, time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, text text NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; dbDelta($sql);

Safe to delete?

If you have uninstalled AI Rights Protection by SimpleFeed, 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_simplefeed_bots_protection_logs`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from AI Rights Protection by SimpleFeed