wp_bbc_botbanishclient_session

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
option_idbigint unsignedNO
option_namevarchar(191)NO
option_valuelongtextNO
option_funclongtextYES
option_timeoutlongtextNO
autoloadvarchar(20)NO

CREATE TABLE Statement

CREATE TABLE `bbc_botbanishclient_session` ( `option_id` bigint unsigned NOT NULL , `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `option_func` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, `option_timeout` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT \'yes\' ) ENGINE

Safe to delete?

If you have uninstalled BotBanish by Randem Systems, 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_bbc_botbanishclient_session`;

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

Other tables from BotBanish by Randem Systems