wp_simplefeed_bots_protection_sitemaps

Static

Stores simplefeed bots protection sitemaps data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
timedatetimeNO
iptinytextNO
bottinytextNO
tokentextNO
robots_txt_requestsint(11)NO
robots_txt_requests_200int(11)NO
robots_txt_requests_403int(11)NO
enableBooleanYES

CREATE TABLE Statement

CREATE TABLE wp_simplefeed_bots_protection_sitemaps ( id mediumint(9) NOT NULL AUTO_INCREMENT, time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, ip tinytext NOT NULL, bot tinytext NOT NULL, token text NOT NULL, robots_txt_requests int(11) NOT NULL DEFAULT 1, robots_txt_requests_200 int(11) NOT NULL DEFAULT 0, robots_txt_requests_403 int(11) NOT NULL DEFAULT 0, enable Boolean DEFAULT false, 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_sitemaps`;

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

Other tables from AI Rights Protection by SimpleFeed