wp_jg_website_analytics_bot_reasons

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑_idBIGINTYES
_bucket_startDATETIMENO
_route_groupVARCHAR(30)NO
_reason_codeVARCHAR(30)NO
_count_hitsINTNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_JG_website_analytics_bot_reasons ( _id BIGINT AUTO_INCREMENT PRIMARY KEY, _bucket_start DATETIME NOT NULL, _route_group VARCHAR(30) NOT NULL, _reason_code VARCHAR(30) NOT NULL, _count_hits INT NOT NULL DEFAULT 0, UNIQUE KEY bucket_route_reason (_bucket_start, _route_group, _reason_code), KEY idx_bucket_start (_bucket_start) ) ENGINE

Safe to delete?

If you have uninstalled JG Website Analytics, 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_jg_website_analytics_bot_reasons`;

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

Other tables from JG Website Analytics