wp_bot

Static

Stores bot data created by this plugin.

Column Definitions

ColumnTypeNullable
biptextNO
user_agenttextYES
countintNO
count_404intNO
count_restrictintNO
count_loginintNO
date_404datetimeYES
date_restrictdatetimeYES

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