wp_bot
StaticStores bot data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| bip | text | NO |
| user_agent | text | YES |
| count | int | NO |
| count_404 | int | NO |
| count_restrict | int | NO |
| count_login | int | NO |
| date_404 | datetime | YES |
| date_restrict | datetime | YES |
CREATE TABLE Statement
CREATE TABLE bot ( bip text UNIQUE DEFAULT '' NOT NULL, user_agent text, count int DEFAULT 0 NOT NULL, count_404 int DEFAULT 0 NOT NULL, count_restrict int DEFAULT 0 NOT NULL, count_login int DEFAULT 0 NOT NULL, date_404 datetime, date_restrict datetime );
Safe to delete?
If you have uninstalled Yasakani Cache, 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_bot`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Yasakani Cache