wp_bad_ip_settings
VerifiedStores bad ip settings data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_bad_ip_settings` (\n `deny_access` int NOT NULL,\n `tor_block` int NOT NULL,\n `bad_queries` int NOT NULL,\n `login_incidents` int NOT NULL,\n `origin` int NOT NULL,\n `reporter` int NOT NULL,\n `token` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `type` int DEFAULT NULL,\n `login_attempts` int DEFAULT NULL,\n `bot_access` int NOT NULL,\n UNIQUE KEY `type` (`type`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled bad_ip WP, 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_bad_ip_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from bad_ip WP